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

  1. Open Natural Earth Downloads.
  2. Select scale (10m, 50m, 110m) by intended zoom/analysis detail.
  3. Select theme (Cultural/Physical/Raster).
  4. 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 FamilyExample LayersMapped LeavesNew Leaf Required?
Administrative boundariesadmin_0_*, admin_1_*Administrative UnitsNo
Populated places and urban areaspopulated_places, urban_areasGeographical Names, Populated Areas and SettlementsNo
Roads / rail / airports / portsroads, railroads, airports, portsTransport Networks, Nautical TrafficNo
Lakes, rivers, basinslakes, rivers_lake_centerlines, geography_marine_polysSurface Freshwater Bodies, Hydrological Basin Delineations, Marine and Coastal WatersNo
Coastline and ocean/land maskscoastline, ocean, landCoastline, Marine and Coastal Waters, Coastal Erosion RiskNo — Coastline leaf created
Elevation/bathymetry contextsr_w/e, shaded relief, bathymetry rastersElevation ModelsNo
Land cover and natural areas proxiesland, glaciated_areas, reefsHabitat Extent, Nature Protection AreasNo (proxy use)
Sovereignty and map units variantsadmin_0_map_units, admin_0_countries, disputed variantsAdministrative UnitsNo

Geometry and CRS Notes

  • Natural Earth vectors are distributed in geographic coordinates (EPSG:4326).
  • Use 10m for analysis where shape fidelity matters.
  • Use 50m/110m for 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.

0 items under this folder.