Download Gadm Data Version 36 Work May 2026

GADM 3.6 works in WGS84, but for area calculation or European mapping, reproject:

gdf_mercator = gdf.to_crs("EPSG:3857")  # Web Mercator
gdf_utm = gdf.to_crs("EPSG:32631")      # UTM zone 31N

Critical URL for global download (direct link, works as of 2025):
https://biogeo.ucdavis.edu/data/gadm3.6/gadm36_levels.gpkg.zip
(Geopackage, all countries, all levels). download gadm data version 36 work


By following these steps, you can seamlessly integrate GADM version 3.6 boundaries into your mapping or statistical workflow. GADM 3


gdf_level0 = gpd.read_file("gadm36_IDN.gpkg", layer="level0") gdf_level1 = gpd.read_file("gadm36_IDN.gpkg", layer="level1") Critical URL for global download (direct link, works

GADM 3.6 offers five formats. Choose based on your workflow:

| Format | Best for | Notes | |--------|----------|-------| | Geopackage | QGIS, modern GIS | Recommended – single file, no shapefile size limits | | Shapefile | ArcGIS, legacy tools | Requires multiple files (.shp, .shx, .dbf) | | KML | Google Earth, web maps | Lightweight, limited attributes | | R (sp) | R users (old workflow) | Direct load() into R’s sp package | | R (sf) | R users (modern) | sf object ready |