Skip to content

Natural Earth 2

Olivier M edited this page Jul 26, 2022 · 1 revision

Source des données : https://www.naturalearthdata.com/downloads/10m-raster-data/10m-natural-earth-2/

Exploitation

  1. Reprojection :
gdalwarp -co TILED=YES -co COMPRESS=DEFLATE -t_srs EPSG:3857 NE2_HR_LC_SR_W_DR.tif naturalearth2_e3857.tif
  1. Création des tuiles :
gdal2tiles.py --no-kml --webviewer=none --processes=16 --tilesize=512 --resampling=bilinear --xyz --zoom=0-7 -p mercator -s epsg:3857 ./naturalearth2_e3857.tif ./tiles

Intégration

Exemple d'intégration dans le style - source :

"natural-earth-2": {
  "type": "raster",
  "maxzoom": 7,
  "tiles": ["https://domain.tld/tiles/NaturalEarth2/{z}/{x}/{y}.png"]
}

Exemple d'intégration dans le style - layer :

{
  "id": "natural-earth",
  "type": "raster",
  "source": "natural-earth-2",
  "maxzoom": 6
}
Clone this wiki locally