Umeå Data
by @simskii
Query public open data from Umeå kommun on locations, facilities, demographics, environment, infrastructure, and building permits with geospatial support.
clawhub install umea-data📖 About This Skill
Umeå Data - Open Data från Umeå kommun
Query open data from Umeå kommun about locations, facilities, demographics, environment, and more.
API Base URL
https://opendata.umea.se/api/v2/Available Data Categories
🏞️ Recreation & Facilities
#### Lekplatser (Playgrounds)
gop_lekparker#### Badplatser (Swimming Spots)
badplatser#### Vandringsleder (Hiking Trails)
vandringsleder#### Rastplatser (Rest Areas)
rastplatser#### Träd (Trees)
trad-som-forvaltas-av-gator-och-parker⚡ Infrastructure
#### Laddplatser (EV Charging Stations)
laddplatser#### WiFi Hotspots
wifi-hotspots🏗️ Building & Planning
#### Bygglov Beslut (Building Permit Decisions)
bygglov-beslut#### Bygglov Inkomna Ärenden (Building Permit Applications)
bygglov-inkomna-arenden📊 Demographics & Statistics
#### Befolkningsförändringar (Population Changes)
befolkningsfoeraendringar-helar#### Bostadsbestånd (Housing Stock)
bostadsbestand-hustyp🌍 Environment
#### Växthusgasutsläpp (Greenhouse Gas Emissions)
vaxthusgasutslapp_umea#### Brottsstatistik (Crime Statistics)
exempel-brottsstatistik-anmaelda-brott-fran-bra-s-oeppna-dataUsage
Query a Dataset
./scripts/query.sh [limit]
Example:
./scripts/query.sh badplatser 10
./scripts/query.sh laddplatser 20
Find Nearest Location
./scripts/nearby.sh [limit]
Example:
# Find nearest playground to Mariehem (approx coordinates)
./scripts/nearby.sh gop_lekparker 63.8200 20.3000 5Find nearest EV charging station to city center
./scripts/nearby.sh laddplatser 63.8258 20.2630 5
API Endpoints
List All Datasets
curl "https://opendata.umea.se/api/v2/catalog/datasets"
Get Records from a Dataset
curl "https://opendata.umea.se/api/v2/catalog/datasets/{dataset_id}/records?limit=20"
Search Datasets
curl "https://opendata.umea.se/api/v2/catalog/datasets?where=search(default,\"query\")"
Data Format
All records follow this structure:
{
"total_count": 123,
"records": [
{
"record": {
"id": "unique-id",
"timestamp": "2024-01-01T12:00:00Z",
"fields": {
"namn": "Location Name",
"geo_point_2d": {
"lat": 63.825,
"lon": 20.263
},
...
}
}
}
]
}
Natural Language Query Examples
The AI can answer questions like:
Recreation:
Infrastructure:
Planning:
Demographics & Environment:
Notes
💡 Examples
Query a Dataset
./scripts/query.sh [limit]
Example:
./scripts/query.sh badplatser 10
./scripts/query.sh laddplatser 20
Find Nearest Location
./scripts/nearby.sh [limit]
Example:
# Find nearest playground to Mariehem (approx coordinates)
./scripts/nearby.sh gop_lekparker 63.8200 20.3000 5Find nearest EV charging station to city center
./scripts/nearby.sh laddplatser 63.8258 20.2630 5