GeoJSON

Download project, network and turbine data as GeoJSON.

All GeoJSON endpoints return application/geojson responses. 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/projects.geojson

Returns all project locations as a GeoJSON FeatureCollection.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/projects.geojson' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output projects.geojson

Operating transmission lines

GET https://api.renewmap.com.au/api/v1/network/transmission/operating.geojson

Returns operating transmission line geometry as GeoJSON.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/network/transmission/operating.geojson' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output transmission-operating.geojson

Development transmission corridors

GET https://api.renewmap.com.au/api/v1/network/transmission/development.geojson

Returns transmission development corridor geometry as GeoJSON.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/network/transmission/development.geojson' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output transmission-development.geojson

Substations

GET https://api.renewmap.com.au/api/v1/network/substations.geojson

Returns substation geometry as GeoJSON.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/network/substations.geojson' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output substations.geojson

Turbine locations

GET https://api.renewmap.com.au/api/v1/turbines.geojson

Returns wind turbine point locations as a GeoJSON FeatureCollection.

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/turbines.geojson' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --output turbines.geojson