AdministrativeBoundaries Published by spatial-gis.information.qld.gov.au
Administrative boundaries from state to land parcel level for Queensland
Queensland, Australia boundaries
Extent not published by this service Load live preview
Service facts Endpoint https://spatial-gis.information.qld.gov.au/arcgis/rest/services/Boundaries/AdministrativeBoundaries/MapServer Copy URL Type ESRI MapServer Layers 13 Formats PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP CRS EPSG:102100 CORS Enabled Response time 268 ms at last check Last verified 2026-07-24 Discovered 1 time by Geo Hound users Layers Id Layer Geometry Features 50 State border14 fields Name Alias Type objectid OBJECTID esriFieldTypeOID feature_type Feature Type esriFieldTypeString attribute_source Attribute Source esriFieldTypeString attribute_date Attribute Date esriFieldTypeDate feature_source Feature Source esriFieldTypeString feature_date Feature Date esriFieldTypeDate pfi PFI esriFieldTypeString ufi UFI esriFieldTypeString dimension_m Dimension (m) esriFieldTypeDouble upper_scale Upper Scale esriFieldTypeInteger text_note Text Note esriFieldTypeString add_information Additional Information esriFieldTypeString shape SHAPE esriFieldTypeGeometry st_length(shape) st_length(shape) esriFieldTypeDouble
line 1 Local government6 fields Name Alias Type objectid OBJECTID esriFieldTypeOID lga Name esriFieldTypeString abbrev_name Name abbreviated esriFieldTypeString lga_code Local government area code esriFieldTypeString ca_area_sqkm Area sq km esriFieldTypeDouble shape SHAPE esriFieldTypeGeometry
polygon 2 Locality6 fields Name Alias Type objectid OBJECTID esriFieldTypeOID locality Name esriFieldTypeString loc_code Locality code esriFieldTypeString lga Local government area esriFieldTypeString ca_area_sqkm Area sq km esriFieldTypeDouble shape SHAPE esriFieldTypeGeometry
polygon 3 Postcode5 fields Name Alias Type objectid OBJECTID esriFieldTypeOID pc_pid Postcode ID esriFieldTypeString shape Shape esriFieldTypeGeometry st_area(shape) st_area(shape) esriFieldTypeDouble st_perimeter(shape) st_perimeter(shape) esriFieldTypeDouble
polygon 4 Federal electorate5 fields Name Alias Type objectid OBJECTID esriFieldTypeOID shape Shape esriFieldTypeGeometry elect_div Name esriFieldTypeString div_number Division number esriFieldTypeDouble area_sqkm Area SqKm esriFieldTypeDouble
polygon 10 State electorate boundaries 5 State electorate5 fields Name Alias Type adminareaname Name esriFieldTypeString id ECQ Id esriFieldTypeString date_effective Date effective esriFieldTypeDate objectid OBJECTID esriFieldTypeOID shape Shape esriFieldTypeGeometry
polygon 9 State electorate future5 fields Name Alias Type adminareaname Name esriFieldTypeString id ECQ Id esriFieldTypeString date_effective Date effective esriFieldTypeDate objectid OBJECTID esriFieldTypeOID shape Shape esriFieldTypeGeometry
polygon 6 Local government divisions and wards 7 Local government division7 fields Name Alias Type elect_div Division esriFieldTypeString div_name Division name esriFieldTypeString lga Local government esriFieldTypeString elect_yr Election year esriFieldTypeSmallInteger act Legislation esriFieldTypeString objectid Object ID esriFieldTypeOID shape Shape esriFieldTypeGeometry
polygon 11 Local government division - superseded7 fields Name Alias Type elect_div Division esriFieldTypeString div_name Division name esriFieldTypeString lga Local government esriFieldTypeString elect_yr Election year esriFieldTypeSmallInteger act Legislation esriFieldTypeString objectid Object ID esriFieldTypeOID shape Shape esriFieldTypeGeometry
polygon 8 Brisbane City Council ward6 fields Name Alias Type ward_name Ward name esriFieldTypeString lga Local government esriFieldTypeString elect_yr Election year esriFieldTypeSmallInteger act Legislation esriFieldTypeString objectid Object ID esriFieldTypeOID shape Shape esriFieldTypeGeometry
polygon 12 Brisbane City Council ward - superseded6 fields Name Alias Type ward_name Ward name esriFieldTypeString lga Local government esriFieldTypeString elect_yr Election year esriFieldTypeSmallInteger act Legislation esriFieldTypeString objectid Object ID esriFieldTypeOID shape Shape esriFieldTypeGeometry
polygon
Use this service QGIS Copy
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: AdministrativeBoundaries
URL: https://spatial-gis.information.qld.gov.au/arcgis/rest/services/Boundaries/AdministrativeBoundaries/MapServer ArcGIS Pro Copy
Insert > Connections > Server > New ArcGIS Server
Server URL: https://spatial-gis.information.qld.gov.au/arcgis/rest/services/Boundaries/AdministrativeBoundaries/MapServer Leaflet Copy
fetch('https://spatial-gis.information.qld.gov.au/arcgis/rest/services/Boundaries/AdministrativeBoundaries/MapServer/50/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map)); Python Copy
import geopandas as gpd
gdf = gpd.read_file(
'https://spatial-gis.information.qld.gov.au/arcgis/rest/services/Boundaries/AdministrativeBoundaries/MapServer/50/query?where=1%3D1&outFields=*&f=geojson'
)