Static API Endpoints
All spatial siting datasets are exposed as high-performance, static JSON/GeoJSON endpoints directly from our GCP VM. You can query them programmatically in any application.
GET
JSON (5.2 MB)
http://35.202.243.209/siting_results.json
Contains 5,592 candidate parcels with geometries & attributes.
GET
GeoJSON (12 KB)
http://35.202.243.209/substations.geojson
Electrical substations in Bastrop County.
GET
KMZ (2.1 MB)
http://35.202.243.209/siting_layers.kmz
Google Earth 3D spatial layers.
Integration Code Snippets
# Fetch the raw candidate parcels JSON dataset
curl -X GET http://35.202.243.209/siting_results.json -o candidates.json
# Fetch the substations GeoJSON dataset
curl -X GET http://35.202.243.209/substations.geojson -o substations.geojson