Skip to content

Commit 2bff971

Browse files
committed
Remove world_boundaries-spherical.tgz from get-shapefiles script
1 parent b117a29 commit 2bff971

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

INSTALL.md

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ This script downloads necessary files, generates and populates the *data* direct
4848

4949
You can also download them manually at the following paths:
5050

51-
* [`world_bnd_m.shp`, `places.shp`, `world_boundaries_m.shp`](https://planet.openstreetmap.org/historical-shapefiles/world_boundaries-spherical.tgz)
5251
* [`simplified_water_polygons.shp`](https://osmdata.openstreetmap.de/download/simplified-water-polygons-split-3857.zip) (updated daily)
5352
* [`ne_110m_admin_0_boundary_lines_land.shp`](http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_boundary_lines_land.zip)
5453
* [`water_polygons.shp`](https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip) (updated daily)

scripts/get-shapefiles.py

+4-15
Original file line numberDiff line numberDiff line change
@@ -36,49 +36,38 @@
3636
# Keys 1, 2, 3, ... set the arg short-options and the related process
3737
# ordering. Use > 0 to allow processing.
3838
1: {
39-
'directory': 'world_boundaries',
40-
'url': 'https://planet.openstreetmap.org/historical-shapefiles/world_boundaries-spherical.tgz', # noqa
41-
'type': 'tgz',
42-
'shp_basename': [
43-
'world_bnd_m',
44-
'places',
45-
'world_boundaries_m'],
46-
'long_opt': '--world-boundaries'
47-
},
48-
49-
2: {
5039
'directory': 'simplified-water-polygons-split-3857',
5140
'url': 'https://osmdata.openstreetmap.de/download/simplified-water-polygons-split-3857.zip', # noqa
5241
'type': 'zip',
5342
'shp_basename': ['simplified_water_polygons'],
5443
'long_opt': '--simplified-water'
5544
},
5645

57-
3: {
46+
2: {
5847
'directory': 'ne_110m_admin_0_boundary_lines_land',
5948
'url': 'http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_boundary_lines_land.zip', # noqa
6049
'type': 'zip_dir',
6150
'shp_basename': ['ne_110m_admin_0_boundary_lines_land'],
6251
'long_opt': '--ne-admin'
6352
},
6453

65-
4: {
54+
3: {
6655
'directory': 'water-polygons-split-3857',
6756
'url': 'https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip', # noqa
6857
'type': 'zip',
6958
'shp_basename': ['water_polygons'],
7059
'long_opt': '--water-polygons'
7160
},
7261

73-
5: {
62+
4: {
7463
'directory': 'antarctica-icesheet-polygons-3857',
7564
'url': 'https://osmdata.openstreetmap.de/download/antarctica-icesheet-polygons-3857.zip', # noqa
7665
'type': 'zip',
7766
'shp_basename': ['icesheet_polygons'],
7867
'long_opt': '--icesheet-polygons'
7968
},
8069

81-
6: {
70+
5: {
8271
'directory': 'antarctica-icesheet-outlines-3857',
8372
'url': 'https://osmdata.openstreetmap.de/download/antarctica-icesheet-outlines-3857.zip', # noqa
8473
'type': 'zip',

0 commit comments

Comments
 (0)