Install
openclaw skills install geoinfer-image-geolocationAI image geolocation via visual analysis — no GPS or EXIF needed. Requires GEOINFER_API_KEY.
openclaw skills install geoinfer-image-geolocation🌍 Geolocate any image using AI — no GPS, no EXIF, no metadata required.
GeoInfer analyzes visual cues (architecture, terrain, vegetation, signage) to predict where a photo was taken, down to city level. Built for OSINT, digital forensics, investigative journalism, and security workflows.
Requires the GEOINFER_API_KEY environment variable.
export GEOINFER_API_KEY="geo_your_key_here"bash scripts/predict.sh /path/to/image.jpg [model_id] [top_n]
model_id — model to use (default: global_v0_1). Run models.sh to list available models.top_n — number of top predictions to return, 1–15 (default: 5)Example:
bash scripts/predict.sh photo.jpg global_v0_1 5
Output: JSON array of top location predictions with coordinates and confidence scores.
bash scripts/models.sh
Returns all models available to your API key (e.g., Global, Car, Property, Accuracy).
bash scripts/credits.sh
Returns your current credit balance.
| Model type | Credits per prediction |
|---|---|
| Global | 1 |
| Car | 2 |
| Property | 3 |
| Accuracy | 3 |
models.sh first if unsure which model to useglobal_v0_1 for general-purpose geolocationtop_n=1 for fastest single-answer responses; top_n=5 for investigations requiring confidence comparisonpredict.sh