Natural Earth provides free public-domain global basemap data for small-scale mapping and analytics.
It is organized by:
- Scale:
1:10m,1:50m,1:110m - Theme: Cultural, Physical, Raster
- Format: zipped shapefiles (vector) and raster relief products
Collection page: Natural Earth Collection Owner page: Natural Earth (owner)
Access Pattern
- Open Natural Earth Downloads.
- Select scale (
10m,50m,110m) by intended zoom/analysis detail. - Select theme (Cultural/Physical/Raster).
- Download zipped package and load in GIS/Python.
Typical Python load flow:
import geopandas as gpd
gdf = gpd.read_file("ne_10m_admin_0_countries.shp")Leaf Coverage Matrix
| Natural Earth Theme Family | Example Layers | Mapped Leaves | New Leaf Required? |
|---|---|---|---|
| Administrative boundaries | admin_0_*, admin_1_* | Administrative Units | No |
| Populated places and urban areas | populated_places, urban_areas | Geographical Names, Populated Areas and Settlements | No |
| Roads / rail / airports / ports | roads, railroads, airports, ports | Transport Networks, Nautical Traffic | No |
| Lakes, rivers, basins | lakes, rivers_lake_centerlines, geography_marine_polys | Surface Freshwater Bodies, Hydrological Basin Delineations, Marine and Coastal Waters | No |
| Coastline and ocean/land masks | coastline, ocean, land | Coastline, Marine and Coastal Waters, Coastal Erosion Risk | No — Coastline leaf created |
| Elevation/bathymetry context | sr_w/e, shaded relief, bathymetry rasters | Elevation Models | No |
| Land cover and natural areas proxies | land, glaciated_areas, reefs | Habitat Extent, Nature Protection Areas | No (proxy use) |
| Sovereignty and map units variants | admin_0_map_units, admin_0_countries, disputed variants | Administrative Units | No |
Geometry and CRS Notes
- Natural Earth vectors are distributed in geographic coordinates (
EPSG:4326). - Use
10mfor analysis where shape fidelity matters. - Use
50m/110mfor continental/global visualization and fast overlays. - Treat Natural Earth as small-scale reference/cartographic baseline, not legal authority.
Implementation Decision
- MVP decision: start with existing leaves only.
- New leaves required now: none.
- Future optional leaf candidate: dedicated coastline morphology leaf, only if shoreline-structure workflows become a recurring requirement.