We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d0b20be + ce7fdd5 commit dd2166aCopy full SHA for dd2166a
5 files changed
config.yaml
@@ -46,7 +46,7 @@ download:
46
filter_keys: ['shop', 'healthcare', 'leisure', 'amenity', 'tourism', 'office', 'craft', 'historic']
47
extract_keys: [
48
'addr:city','addr:country','addr:housename','addr:housenumber','addr:postcode',
49
- 'addr:state','addr:street','addr:unit','amenity','atm','bar','bicycle',
+ 'addr:state','addr:street','addr:unit','access','amenity','atm','bar','bicycle',
50
'bicycle_parking','brand','brand:wikidata','building','check_date',
51
'check_date:opening_hours','craft','cuisine','description','education','email',
52
'emergency','fountain','geometry','healthcare','healthcare:speciality','historic',
scripts/conflation/conflate.py
@@ -173,10 +173,22 @@ def log_rss(label: str) -> None:
173
OSM_MERGE_COLS = [
174
"osm_id", "osm_type", "name", "brand",
175
"conf_mean", "conf_lower", "conf_upper", "geometry",
176
+ # Address subfields
177
+ "addr:housenumber", "addr:street", "addr:unit",
178
+ "addr:city", "addr:state", "addr:postcode", "addr:country",
179
+ # Contact + hours + access
180
+ "phone", "website", "opening_hours", "access",
181
]
182
OVERTURE_MERGE_COLS = [
183
"overture_id", "overture_name", "brand_name",
184
"confidence", "geometry",
185
+ # Address subfields (no housenumber / unit on the Overture side)
186
+ "overture_addr_street", "overture_addr_city",
187
+ "overture_addr_state", "overture_addr_postcode",
188
+ "overture_addr_country",
189
+ # Contact arrays + alternates
190
+ "overture_websites", "overture_phones", "overture_socials",
191
+ "overture_categories_alternate",
192
193
194
0 commit comments