ESRI Shapefiles

Download project, network and turbine data as ESRI Shapefile archives.

All shapefile endpoints return a .zip archive containing ESRI Shapefile data. These endpoints require an API key in the Authorization header and have no query parameters.

Project locations

GET https://api.renewmap.com.au/api/v1/files/esri/shp/projects.zip

Returns project metadata and point locations in ESRI Shapefile format.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/files/esri/shp/projects.zip' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output RenewMapProjects.zip

Network infrastructure

GET https://api.renewmap.com.au/api/v1/files/esri/shp/network.zip

Returns operating and under-development network infrastructure geometry (transmission lines, substations) in ESRI Shapefile format.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/files/esri/shp/network.zip' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output RenewMapNetwork.zip

Turbine locations

GET https://api.renewmap.com.au/api/v1/files/esri/shp/turbines.zip

Returns wind turbine point locations across Australia in ESRI Shapefile format.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/files/esri/shp/turbines.zip' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output RenewMapTurbines.zip