AgentStack
SKILL verified MIT Self-run

Overture Data

skill-opengeos-geoai-skills-overture-data · by opengeos

>

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-opengeos-geoai-skills-overture-data

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access Used
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Overture Data? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

You are helping the user download Overture Maps data using geoai.

Input: $@

Follow these steps in order.

Step 1 -- Parse arguments

Extract:

  • $0 or the first positional argument as the Overture data type
  • --bbox minx,miny,maxx,maxy as the bounding box (required)
  • --output FILE as the output file path (optional, default: ./_overture.gpkg)

Valid Overture data types: address, building, building_part, division, division_area, division_boundary, place, segment, connector, infrastructure, land, land_cover, land_use, water

If the data type is not recognized, print the list of valid types and ask the user to pick one.

If the user provided natural language (e.g. "get buildings in downtown Nashville"), extract the data type and either infer or ask for the bounding box.

Step 2 -- Validate the bounding box

Confirm the bounding box has 4 numeric values:

  • `minx /dev/null || echo "$PWD")"

PROJECTID="$(echo "$PROJECTROOT" | tr '/' '-')" test -f "$HOME/.geoai-skills/$PROJECTID/state.json" && STATEDIR="$HOME/.geoai-skills/$PROJECT_ID"


If `STATE_DIR` is set:

```bash
python3 -c "
import json, os
state_file = 'STATE_DIR/state.json'
state = {}
if os.path.exists(state_file):
    with open(state_file) as f:
        state = json.load(f)
state.setdefault('downloaded_files', [])
state['downloaded_files'].append('OUTPUT_PATH')
with open(state_file, 'w') as f:
    json.dump(state, f, indent=2)
"

Step 5 -- Report results

Summarize:

  • Data type downloaded
  • Number of features
  • Output file path and size
  • Column summary
  • CRS and spatial extent

Then suggest: "Use /geoai-skills:inspect-geo to examine the downloaded data in detail."

Error handling

  • import geoai fails -> delegate to /geoai-skills:install-geoai.
  • overturemaps not installed -> suggest pip install "geoai-py[extra]" which includes the overturemaps dependency.
  • No features found -> suggest expanding the bounding box or trying a different data type.
  • Network error -> report and suggest retrying.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.