Openclaw Skills for Open-Elevation lets you query global elevation data by latitude and longitude, both one point at a time and in large batches.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install geoskill-open-elevation
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install geoskill-open-elevation using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Openclaw Skills for Open-Elevation provides a simple, no-key workflow for retrieving elevation values from the public Open-Elevation API. It supports single-coordinate lookups as well as CSV-driven batch processing, making it useful for geospatial analysis, data enrichment, and mapping workflows.
This skill is designed to handle validation, chunking, and output formatting automatically so you can move from raw coordinates to usable elevation data in CSV or JSON with minimal setup. Openclaw Skills makes it practical to add terrain context to datasets without managing your own elevation service.
pip install requests>=2.28.0 tqdm
# Or install from the provided requirements file
pip install -r scripts/requirements.txt
# Single point
python scripts/open-elevation.py lookup --lat 39.9042 --lon 116.4074
# JSON output
python scripts/open-elevation.py lookup --lat 39.9042 --lon 116.4074 --json
# Batch from CSV
python scripts/open-elevation.py batch --input coords.csv --output results.csv
# Batch to JSON
python scripts/open-elevation.py batch --input coords.csv --output results.json --json
Prepare your CSV input with valid coordinate columns.
lat/lon or latitude/longitudeIf your network is slow or the public API is busy, increase the timeout in your script invocation or workflow configuration.
For CI/CD or automation, schedule the batch command in your pipeline and write the output to a file artifact or database import step.
Openclaw Skills for Open-Elevation uses a lightweight geospatial data model centered on coordinate inputs and elevation outputs.
| Data Type | Fields | Notes |
|---|---|---|
| Single lookup input | --lat, --lon |
Required for point queries; decimal degrees in valid geographic ranges |
| Batch input CSV | lat/lon or latitude/longitude |
Source file containing one coordinate pair per row |
| Output CSV | latitude, longitude, elevation |
Standard tabular output for spreadsheets, ETL, and GIS |
| Output JSON | results[] array with latitude, longitude, elevation |
Structured output for programmatic consumption |
Metadata and processing taxonomy:
0 or negative values depending on data availabilityGenerated artifacts typically include:
Loading
Openclaw Skills for downloading and subsetting JRC Global Surface Water layers as GeoTIFFs from tiled Landsat-derived datasets.

Openclaw Skills for RS Metadata Crawler lets you search, merge, deduplicate, and export satellite imagery metadata from major public sources without downloading imagery.

Openclaw Skills for calculating remote sensing spectral indices from GeoTIFF imagery using pure Python, with no external dependencies.

Openclaw Skills for vector GIS conversion lets you transform spatial data between major geospatial formats with zero external dependencies.

Openclaw Skills for downloading and exporting Chinese administrative-division vector data with search, metadata lookup, bbox calculation, and batch GIS output.

Openclaw Skills for GeoTIFF Metadata Viewer lets you inspect GeoTIFF file metadata, CRS, resolution, tags, and corner coordinates with zero dependencies.








































