Skip to content

Commit 20c9458

Browse files
committed
Update taxonomy.
1 parent 06b92f7 commit 20c9458

7 files changed

Lines changed: 276 additions & 20 deletions

File tree

scripts/overture/download.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
download.overture.release_date — pinned release (null = auto-detect)
1515
download.overture.s3_bucket — Overture Maps S3 bucket name
1616
download.overture.s3_region — AWS region of the Overture bucket
17-
download.overture.taxonomy_l0_categories — L0 category filter list
17+
download.overture.taxonomy_allowlist — list of [L0, L1] pairs; L1 null = any
1818
download.general.boundary.source_url — Census state-boundary zip URL
1919
download.general.boundary.coastline_buffer_m — outward coastline buffer (m)
2020
directories.boundary — cache directory for boundary file
@@ -39,7 +39,7 @@
3939
RELEASE_DATE = config.get("download", "overture", "release_date", fail_if_none=False)
4040
S3_BUCKET = config.get("download", "overture", "s3_bucket")
4141
S3_REGION = config.get("download", "overture", "s3_region")
42-
TAXONOMY_CATEGORIES = config.get("download", "overture", "taxonomy_l0_categories")
42+
TAXONOMY_ALLOWLIST = config.get("download", "overture", "taxonomy_allowlist")
4343
BOUNDARY_URL = config.get("download", "general", "boundary", "source_url")
4444
COASTLINE_BUFFER_M = config.get(
4545
"download", "general", "boundary", "coastline_buffer_m"
@@ -64,7 +64,7 @@
6464
)
6565
gdf = download_overture_snapshot(
6666
output_path=OUTPUT_PATH,
67-
taxonomy_l0_categories=TAXONOMY_CATEGORIES,
67+
taxonomy_allowlist=TAXONOMY_ALLOWLIST,
6868
boundary_gdf=boundary_gdf,
6969
coarse_bboxes=coarse_bboxes,
7070
bucket=S3_BUCKET,

src/openpois/conflation/data/match_radii.csv

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Playground,100
6262
Post Office,50
6363
Recreation,100
6464
Restaurant,50
65-
Salon and Hair,50
65+
Hair and Beauty,50
6666
School,100
6767
Shoe Store,50
6868
Shopping Center,200
@@ -78,3 +78,16 @@ Tire Store,50
7878
University,200
7979
Veterinarian,50
8080
Wholesale Store,100
81+
ATM,25
82+
Campground,200
83+
Cemetery,200
84+
Government Office,50
85+
Home Service,50
86+
Hotel,100
87+
Legal Service,50
88+
Other Financial,50
89+
Other Professional,50
90+
Place of Worship,100
91+
Public Restroom,50
92+
Public Safety,50
93+
Real Estate,50

src/openpois/conflation/data/taxonomy_crosswalk_openstreetmap.csv

Lines changed: 121 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
osm_key,osm_value,shared_label
22
shop,alcohol,Liquor Store
33
shop,bakery,Bakery
4-
shop,beauty,Salon and Hair
4+
shop,beauty,Hair and Beauty
55
shop,bicycle,Bike shop
66
shop,books,Bookstore
77
shop,car,Car Dealer
@@ -17,10 +17,11 @@ shop,florist,Florist
1717
shop,furniture,Furniture Store
1818
shop,garden_centre,Garden Store
1919
shop,gift,Specialty Store
20-
shop,hairdresser,Salon and Hair
20+
shop,hairdresser,Hair and Beauty
2121
shop,hardware,Hardware
2222
shop,jewelry,Jewelry Store
2323
shop,laundry,Laundromat
24+
shop,locksmith,Home Service
2425
shop,mall,Shopping Center
2526
shop,massage,Massage Therapy
2627
shop,mobile_phone,Cell Phone Store
@@ -56,6 +57,7 @@ healthcare,psychotherapist,Mental Health
5657
healthcare,rehabilitation,Physical Therapy
5758
healthcare,speech_therapist,Speech Therapist
5859
amenity,arts_centre,Arts Venue
60+
amenity,atm,ATM
5961
amenity,bank,Bank
6062
amenity,bar,Bar
6163
amenity,biergarten,Bar
@@ -68,11 +70,15 @@ amenity,cinema,Movie Theater
6870
amenity,clinic,Clinic
6971
amenity,college,University
7072
amenity,community_centre,Community Center
73+
amenity,courthouse,Government Office
7174
amenity,dentist,Dentist
7275
amenity,doctors,Clinic
7376
amenity,fast_food,Fast Food
77+
amenity,fire_station,Public Safety
7478
amenity,food_court,Restaurant
7579
amenity,fuel,Gas Station
80+
amenity,funeral_hall,Cemetery
81+
amenity,grave_yard,Cemetery
7682
amenity,hospital,Clinic
7783
amenity,ice_cream,Dessert Shop
7884
amenity,kindergarten,Kindergarten
@@ -81,12 +87,16 @@ amenity,marketplace,Market
8187
amenity,museum,Museum
8288
amenity,nightclub,Nightclub
8389
amenity,pharmacy,Pharmacy
90+
amenity,place_of_worship,Place of Worship
91+
amenity,police,Public Safety
8492
amenity,post_office,Post Office
8593
amenity,pub,Bar
8694
amenity,restaurant,Restaurant
8795
amenity,school,School
8896
amenity,social_centre,Social Club
8997
amenity,theatre,Performing Arts
98+
amenity,toilets,Public Restroom
99+
amenity,townhall,Government Office
90100
amenity,university,University
91101
amenity,veterinary,Veterinarian
92102
leisure,amusement_arcade,Arcade
@@ -112,7 +122,116 @@ leisure,swimming_pool,Swimming Pool
112122
leisure,track,Recreation
113123
leisure,trampoline_park,Recreation
114124
leisure,water_park,Recreation
125+
tourism,alpine_hut,Hotel
126+
tourism,apartment,Hotel
127+
tourism,aquarium,Recreation
128+
tourism,artwork,Other Amenity
129+
tourism,attraction,Other Amenity
130+
tourism,camp_site,Campground
131+
tourism,caravan_site,Campground
132+
tourism,chalet,Hotel
133+
tourism,gallery,Arts Venue
134+
tourism,guest_house,Hotel
135+
tourism,hostel,Hotel
136+
tourism,hotel,Hotel
137+
tourism,motel,Hotel
138+
tourism,museum,Museum
139+
tourism,picnic_site,Other Amenity
140+
tourism,theme_park,Recreation
141+
tourism,viewpoint,Other Amenity
142+
tourism,wilderness_hut,Hotel
143+
tourism,zoo,Recreation
144+
office,accountant,Other Professional
145+
office,advertising_agency,Other Professional
146+
office,architect,Other Professional
147+
office,association,Community Center
148+
office,company,Other Professional
149+
office,consulting,Other Professional
150+
office,diplomatic,Government Office
151+
office,educational_institution,School
152+
office,employment_agency,Other Professional
153+
office,engineer,Other Professional
154+
office,energy_supplier,Other Professional
155+
office,estate_agent,Real Estate
156+
office,financial,Other Financial
157+
office,financial_advisor,Other Financial
158+
office,government,Government Office
159+
office,insurance,Other Financial
160+
office,it,Other Professional
161+
office,lawyer,Legal Service
162+
office,logistics,Other Professional
163+
office,newspaper,Other Professional
164+
office,ngo,Community Center
165+
office,notary,Legal Service
166+
office,political_party,Community Center
167+
office,property_management,Real Estate
168+
office,religion,Place of Worship
169+
office,research,Other Professional
170+
office,security,Other Professional
171+
office,tax_advisor,Other Professional
172+
office,telecommunication,Other Professional
173+
craft,beekeeper,Home Service
174+
craft,brewery,Bar
175+
craft,builder,Home Service
176+
craft,carpenter,Home Service
177+
craft,caterer,Bakery
178+
craft,cleaning,Home Service
179+
craft,confectionery,Bakery
180+
craft,dressmaker,Home Service
181+
craft,electrician,Home Service
182+
craft,electronics_repair,Specialty Store
183+
craft,gardener,Home Service
184+
craft,glaziery,Home Service
185+
craft,grinding_mill,Specialty Store
186+
craft,handicraft,Home Service
187+
craft,hvac,Home Service
188+
craft,joiner,Home Service
189+
craft,key_cutter,Home Service
190+
craft,metal_construction,Home Service
191+
craft,painter,Home Service
192+
craft,photographer,Specialty Store
193+
craft,plumber,Home Service
194+
craft,roofer,Home Service
195+
craft,sawmill,Specialty Store
196+
craft,shoemaker,Specialty Store
197+
craft,stonemason,Home Service
198+
craft,tailor,Specialty Store
199+
craft,upholsterer,Home Service
200+
craft,window_construction,Home Service
201+
craft,winery,Bar
202+
historic,aircraft,Museum
203+
historic,archaeological_site,Museum
204+
historic,boundary_stone,Museum
205+
historic,building,Museum
206+
historic,cannon,Museum
207+
historic,castle,Museum
208+
historic,charcoal_pile,Museum
209+
historic,church,Place of Worship
210+
historic,city_gate,Museum
211+
historic,citywalls,Museum
212+
historic,fort,Museum
213+
historic,heritage,Museum
214+
historic,house,Museum
215+
historic,manor,Museum
216+
historic,memorial,Museum
217+
historic,milestone,Museum
218+
historic,mine,Museum
219+
historic,mine_shaft,Museum
220+
historic,monument,Museum
221+
historic,railway,Museum
222+
historic,ruins,Museum
223+
historic,shieling,Museum
224+
historic,tomb,Museum
225+
historic,wayside_cross,Place of Worship
226+
historic,wayside_shrine,Place of Worship
227+
historic,wreck,Museum
228+
landuse,cemetery,Cemetery
229+
landuse,religious,Place of Worship
115230
amenity,*,Other Amenity
116231
healthcare,*,Other Healthcare
117232
shop,*,Other Shop
118233
leisure,*,Recreation
234+
tourism,*,Other Amenity
235+
office,*,Other Professional
236+
craft,*,Home Service
237+
historic,*,Museum

src/openpois/conflation/data/taxonomy_crosswalk_overture_maps.csv

Lines changed: 74 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ health_care,occupational_therapy,,Occupational Therapy
117117
health_care,optometrist,optician,Eye Care
118118
health_care,optometrist,optometrist,Eye Care
119119
health_care,optometrist,,Eye Care
120-
health_care,personal_care_service,beauty_salon,Salon and Hair
121-
health_care,personal_care_service,hairdresser,Salon and Hair
122-
health_care,personal_care_service,,Salon and Hair
120+
health_care,personal_care_service,beauty_salon,Hair and Beauty
121+
health_care,personal_care_service,hairdresser,Hair and Beauty
122+
health_care,personal_care_service,,Hair and Beauty
123123
health_care,physical_therapy,physiotherapy,Physical Therapy
124124
health_care,physical_therapy,rehabilitation,Physical Therapy
125125
health_care,physical_therapy,,Physical Therapy
@@ -233,3 +233,74 @@ sports_and_recreation,trail,,Recreation
233233
sports_and_recreation,water_sport,water_sport,Recreation
234234
sports_and_recreation,water_sport,,Recreation
235235
sports_and_recreation,,,Recreation
236+
community_and_government,civic_organization,,Community Center
237+
community_and_government,government_office,,Government Office
238+
community_and_government,public_facility,public_restroom,Public Restroom
239+
community_and_government,public_facility,,Public Restroom
240+
community_and_government,public_safety_service,fire_station,Public Safety
241+
community_and_government,public_safety_service,police,Public Safety
242+
community_and_government,public_safety_service,,Public Safety
243+
community_and_government,social_or_community_service,post_office,Post Office
244+
community_and_government,social_or_community_service,community_centre,Community Center
245+
community_and_government,social_or_community_service,,Community Center
246+
community_and_government,,,Community Center
247+
cultural_and_historic,cultural_center,,Community Center
248+
cultural_and_historic,historic_site,,Museum
249+
cultural_and_historic,memorial_site,cemetery,Cemetery
250+
cultural_and_historic,memorial_site,monument,Museum
251+
cultural_and_historic,memorial_site,,Museum
252+
cultural_and_historic,place_of_worship,,Place of Worship
253+
cultural_and_historic,religious_organization,,Place of Worship
254+
cultural_and_historic,,,Other Amenity
255+
education,educational_facility,,School
256+
education,library,,Library
257+
education,place_of_learning,adult_education_center,School
258+
education,place_of_learning,college_university,University
259+
education,place_of_learning,school,School
260+
education,place_of_learning,specialty_school,School
261+
education,place_of_learning,,School
262+
education,,,School
263+
lifestyle_services,animal_or_pet_service,pet_care_service,Pet Store
264+
lifestyle_services,animal_or_pet_service,veterinary_care,Veterinarian
265+
lifestyle_services,animal_or_pet_service,,Pet Store
266+
lifestyle_services,beauty_service,,Hair and Beauty
267+
lifestyle_services,food_service,,Other Amenity
268+
lifestyle_services,personal_or_beauty_service,barber,Hair and Beauty
269+
lifestyle_services,personal_or_beauty_service,beauty_salon,Hair and Beauty
270+
lifestyle_services,personal_or_beauty_service,body_modification,Hair and Beauty
271+
lifestyle_services,personal_or_beauty_service,hair_salon,Hair and Beauty
272+
lifestyle_services,personal_or_beauty_service,nail_salon,Hair and Beauty
273+
lifestyle_services,personal_or_beauty_service,,Hair and Beauty
274+
lifestyle_services,wellness_service,health_and_wellness_club,Fitness Center
275+
lifestyle_services,wellness_service,massage_therapy,Massage Therapy
276+
lifestyle_services,wellness_service,spa,Massage Therapy
277+
lifestyle_services,wellness_service,,Massage Therapy
278+
lodging,bed_and_breakfast,,Hotel
279+
lodging,cabin,,Hotel
280+
lodging,campground,,Campground
281+
lodging,cottage,,Hotel
282+
lodging,hostel,,Hotel
283+
lodging,hotel,motel,Hotel
284+
lodging,hotel,,Hotel
285+
lodging,inn,,Hotel
286+
lodging,lodge,,Hotel
287+
lodging,resort,,Hotel
288+
lodging,rv_park,,Campground
289+
lodging,,,Hotel
290+
services_and_business,financial_service,atm,ATM
291+
services_and_business,financial_service,bank_or_credit_union,Bank
292+
services_and_business,financial_service,,Other Financial
293+
services_and_business,home_service,contractor,Home Service
294+
services_and_business,home_service,interior_design,Home Service
295+
services_and_business,home_service,key_and_locksmith,Home Service
296+
services_and_business,home_service,landscaping,Home Service
297+
services_and_business,home_service,,Home Service
298+
services_and_business,legal_service,,Legal Service
299+
services_and_business,professional_service,,Other Professional
300+
services_and_business,real_estate_service,,Real Estate
301+
travel_and_transportation,fueling_station,ev_charging_station,Charging Station
302+
travel_and_transportation,fueling_station,gas_station,Gas Station
303+
travel_and_transportation,fueling_station,,Gas Station
304+
travel_and_transportation,vehicle_service,automotive_service,Car Repair
305+
travel_and_transportation,vehicle_service,car_wash,Car Wash
306+
travel_and_transportation,vehicle_service,,Car Repair
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
overture_l0,osm_key
22
arts_and_entertainment,amenity
3+
arts_and_entertainment,tourism
34
food_and_drink,amenity
45
health_care,healthcare
56
shopping,shop
67
sports_and_recreation,leisure
8+
services_and_business,amenity
9+
services_and_business,shop
10+
services_and_business,office
11+
services_and_business,craft
12+
lifestyle_services,shop
13+
lifestyle_services,amenity
14+
lifestyle_services,craft
15+
community_and_government,amenity
16+
community_and_government,office
17+
cultural_and_historic,amenity
18+
cultural_and_historic,historic
19+
cultural_and_historic,landuse
20+
cultural_and_historic,tourism
21+
education,amenity
22+
education,office
23+
travel_and_transportation,amenity
24+
lodging,tourism

0 commit comments

Comments
 (0)