Skip to main content

Data Formats

Geolocarta supports a range of industry-standard geospatial data formats.

Raster Formats (Imagery)

FormatExtensionUse Case
GeoTIFF.tifFull resolution, georeferenced
Cloud Optimised GeoTIFF.tif (COG)Streaming, large files
JPEG 2000.jp2Compressed, large areas
PNG.pngWeb tiles, transparency
JPEG.jpgWeb tiles, smaller files

Vector Formats (Cadastral, Layers)

FormatExtensionUse Case
GeoJSON.geojsonWeb apps, APIs
Shapefile.shpDesktop GIS
GeoPackage.gpkgModern GIS, SQLite-based
KML.kmlGoogle Earth
CSV.csvTabular with lat/lng columns

Requesting a Specific Format

Use the format query parameter:

# GeoJSON (default)
curl "https://api.geolocarta.com/v1/cadastral?lat=-27.47&lng=153.02&format=geojson"

# Shapefile (returns .zip)
curl "https://api.geolocarta.com/v1/cadastral?lat=-27.47&lng=153.02&format=shapefile"

# GeoPackage
curl "https://api.geolocarta.com/v1/cadastral?lat=-27.47&lng=153.02&format=gpkg"
Was this page helpful?