-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
194 lines (187 loc) · 7.88 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
SVN_URL=https://github.com/nvkelso/natural-earth-vector/trunk
all: \
topojson/ne_10m_admin_0_antarctic_claim_limit_lines.json \
topojson/ne_10m_admin_0_antarctic_claims.json \
topojson/ne_10m_admin_0_boundary_lines_disputed_areas.json \
topojson/ne_10m_admin_0_boundary_lines_land.json \
topojson/ne_10m_admin_0_boundary_lines_map_units.json \
topojson/ne_10m_admin_0_boundary_lines_maritime_indicator.json \
topojson/ne_10m_admin_0_countries.json \
topojson/ne_10m_admin_0_countries_lakes.json \
topojson/ne_10m_admin_0_disputed_areas.json \
topojson/ne_10m_admin_0_disputed_areas_scale_rank_minor_islands.json \
topojson/ne_10m_admin_0_label_points.json \
topojson/ne_10m_admin_0_map_subunits.json \
topojson/ne_10m_admin_0_map_units.json \
topojson/ne_10m_admin_0_pacific_groupings.json \
topojson/ne_10m_admin_0_scale_rank.json \
topojson/ne_10m_admin_0_scale_rank_minor_islands.json \
topojson/ne_10m_admin_0_seams.json \
topojson/ne_10m_admin_0_sovereignty.json \
topojson/ne_10m_admin_1_label_points.json \
topojson/ne_10m_admin_1_seams.json \
topojson/ne_10m_admin_1_states_provinces.json \
topojson/ne_10m_admin_1_states_provinces_lakes.json \
topojson/ne_10m_admin_1_states_provinces_lakes_shp.json \
topojson/ne_10m_admin_1_states_provinces_lines.json \
topojson/ne_10m_admin_1_states_provinces_scale_rank.json \
topojson/ne_10m_admin_1_states_provinces_shp.json \
topojson/ne_10m_airports.json \
topojson/ne_10m_antarctic_ice_shelves_lines.json \
topojson/ne_10m_antarctic_ice_shelves_polys.json \
topojson/ne_10m_bathymetry_A_10000.json \
topojson/ne_10m_bathymetry_B_9000.json \
topojson/ne_10m_bathymetry_C_8000.json \
topojson/ne_10m_bathymetry_D_7000.json \
topojson/ne_10m_bathymetry_E_6000.json \
topojson/ne_10m_bathymetry_F_5000.json \
topojson/ne_10m_bathymetry_G_4000.json \
topojson/ne_10m_bathymetry_H_3000.json \
topojson/ne_10m_bathymetry_I_2000.json \
topojson/ne_10m_bathymetry_J_1000.json \
topojson/ne_10m_bathymetry_K_200.json \
topojson/ne_10m_bathymetry_L_0.json \
topojson/ne_10m_coastline.json \
topojson/ne_10m_geographic_lines.json \
topojson/ne_10m_geography_marine_polys.json \
topojson/ne_10m_geography_regions_elevation_points.json \
topojson/ne_10m_geography_regions_points.json \
topojson/ne_10m_geography_regions_polys.json \
topojson/ne_10m_glaciated_areas.json \
topojson/ne_10m_graticules_10.json \
topojson/ne_10m_graticules_15.json \
topojson/ne_10m_graticules_1.json \
topojson/ne_10m_graticules_20.json \
topojson/ne_10m_graticules_30.json \
topojson/ne_10m_graticules_5.json \
topojson/ne_10m_lakes_europe.json \
topojson/ne_10m_lakes.json \
topojson/ne_10m_lakes_historic.json \
topojson/ne_10m_lakes_north_america.json \
topojson/ne_10m_lakes_pluvial.json \
topojson/ne_10m_land.json \
topojson/ne_10m_land_ocean_label_points.json \
topojson/ne_10m_land_ocean_seams.json \
topojson/ne_10m_land_scale_rank.json \
topojson/ne_10m_minor_islands_coastline.json \
topojson/ne_10m_minor_islands.json \
topojson/ne_10m_minor_islands_label_points.json \
topojson/ne_10m_ocean.json \
topojson/ne_10m_ocean_scale_rank.json \
topojson/ne_10m_parks_and_protected_lands_area.json \
topojson/ne_10m_parks_and_protected_lands_line.json \
topojson/ne_10m_parks_and_protected_lands_point.json \
topojson/ne_10m_parks_and_protected_lands_scale_rank.json \
topojson/ne_10m_playas.json \
topojson/ne_10m_populated_places.json \
topojson/ne_10m_populated_places_simple.json \
topojson/ne_10m_ports.json \
topojson/ne_10m_railroads.json \
topojson/ne_10m_railroads_north_america.json \
topojson/ne_10m_reefs.json \
topojson/ne_10m_rivers_europe.json \
topojson/ne_10m_rivers_lake_centerlines.json \
topojson/ne_10m_rivers_lake_centerlines_scale_rank.json \
topojson/ne_10m_rivers_north_america.json \
topojson/ne_10m_roads.json \
topojson/ne_10m_time_zones.json \
topojson/ne_10m_urban_areas.json \
topojson/ne_10m_wgs84_bounding_box.json \
topojson/ne_110m_admin_0_boundary_lines_land.json \
topojson/ne_110m_admin_0_countries.json \
topojson/ne_110m_admin_0_countries_lakes.json \
topojson/ne_110m_admin_0_map_units.json \
topojson/ne_110m_admin_0_pacific_groupings.json \
topojson/ne_110m_admin_0_scale_rank.json \
topojson/ne_110m_admin_0_sovereignty.json \
topojson/ne_110m_admin_0_tiny_countries.json \
topojson/ne_110m_admin_1_states_provinces.json \
topojson/ne_110m_admin_1_states_provinces_lakes.json \
topojson/ne_110m_admin_1_states_provinces_lakes_shp.json \
topojson/ne_110m_admin_1_states_provinces_lines.json \
topojson/ne_110m_admin_1_states_provinces_scale_rank.json \
topojson/ne_110m_admin_1_states_provinces_shp.json \
topojson/ne_110m_admin_1_states_provinces_shp_scale_rank.json \
topojson/ne_110m_coastline.json \
topojson/ne_110m_geographic_lines.json \
topojson/ne_110m_geography_marine_polys.json \
topojson/ne_110m_geography_regions_elevation_points.json \
topojson/ne_110m_geography_regions_points.json \
topojson/ne_110m_geography_regions_polys.json \
topojson/ne_110m_glaciated_areas.json \
topojson/ne_110m_graticules_10.json \
topojson/ne_110m_graticules_15.json \
topojson/ne_110m_graticules_1.json \
topojson/ne_110m_graticules_20.json \
topojson/ne_110m_graticules_30.json \
topojson/ne_110m_graticules_5.json \
topojson/ne_110m_lakes.json \
topojson/ne_110m_land.json \
topojson/ne_110m_ocean.json \
topojson/ne_110m_populated_places.json \
topojson/ne_110m_populated_places_simple.json \
topojson/ne_110m_rivers_lake_centerlines.json \
topojson/ne_110m_wgs84_bounding_box.json \
topojson/ne_50m_admin_0_boundary_lines_disputed_areas.json \
topojson/ne_50m_admin_0_boundary_lines_land.json \
topojson/ne_50m_admin_0_boundary_lines_maritime_indicator.json \
topojson/ne_50m_admin_0_boundary_map_units.json \
topojson/ne_50m_admin_0_breakaway_disputed_areas.json \
topojson/ne_50m_admin_0_countries.json \
topojson/ne_50m_admin_0_countries_lakes.json \
topojson/ne_50m_admin_0_map_subunits.json \
topojson/ne_50m_admin_0_map_units.json \
topojson/ne_50m_admin_0_pacific_groupings.json \
topojson/ne_50m_admin_0_scale_rank.json \
topojson/ne_50m_admin_0_sovereignty.json \
topojson/ne_50m_admin_0_tiny_countries.json \
topojson/ne_50m_admin_0_tiny_countries_scale_rank.json \
topojson/ne_50m_admin_1_states_provinces.json \
topojson/ne_50m_admin_1_states_provinces_lakes.json \
topojson/ne_50m_admin_1_states_provinces_lakes_shp.json \
topojson/ne_50m_admin_1_states_provinces_lines.json \
topojson/ne_50m_admin_1_states_provinces_scale_rank.json \
topojson/ne_50m_admin_1_states_provinces_shp.json \
topojson/ne_50m_admin_1_states_provinces_shp_scale_rank.json \
topojson/ne_50m_antarctic_ice_shelves_lines.json \
topojson/ne_50m_antarctic_ice_shelves_polys.json \
topojson/ne_50m_coastline.json \
topojson/ne_50m_geographic_lines.json \
topojson/ne_50m_geography_marine_polys.json \
topojson/ne_50m_geography_regions_elevation_points.json \
topojson/ne_50m_geography_regions_points.json \
topojson/ne_50m_geography_regions_polys.json \
topojson/ne_50m_glaciated_areas.json \
topojson/ne_50m_graticules_10.json \
topojson/ne_50m_graticules_15.json \
topojson/ne_50m_graticules_1.json \
topojson/ne_50m_graticules_20.json \
topojson/ne_50m_graticules_30.json \
topojson/ne_50m_graticules_5.json \
topojson/ne_50m_lakes.json \
topojson/ne_50m_lakes_historic.json \
topojson/ne_50m_land.json \
topojson/ne_50m_ocean.json \
topojson/ne_50m_playas.json \
topojson/ne_50m_populated_places.json \
topojson/ne_50m_populated_places_simple.json \
topojson/ne_50m_rivers_lake_centerlines.json \
topojson/ne_50m_rivers_lake_centerlines_scale_rank.json \
topojson/ne_50m_urban_areas.json \
topojson/ne_50m_wgs84_bounding_box.json \
geojson:
mkdir $@
geojson/%.geojson.gz: geojson
svn export --force $(SVN_URL)/$@ $@
geojson/%.geojson: geojson/%.geojson.gz
gunzip -c -f $< > $@
topojson:
mkdir $@
topojson/%.json: geojson/%.geojson topojson
node_modules/.bin/topojson \
-o $@ \
-p \
-- $< \
clean:
rm -rf geojson
rm -rf topojson