-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathkeys.txt
More file actions
1040 lines (982 loc) · 60.1 KB
/
keys.txt
File metadata and controls
1040 lines (982 loc) · 60.1 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### KEYS TO REMOVE ###
shop_?[1-9]?(:.*)?
craft_?[1-9]?
amenity_?[1-9]?
club_?[1-9]?
old_amenity
old_shop
information
leisure // for example leisure=sports_centre + shop=ticket or leisure=sauna + shop=massage
office_?[1-9]?
tourism
// popular shop=* / craft=* subkeys
marketplace
household
swimming_pool
laundry
golf
sports
ice_cream
scooter
music
retail
yes
ticket
newsagent
lighting
truck
car_repair
car_parts
video
fuel
farm
car
tractor
hgv
ski
sculptor
hearing_aids
surf
photo
boat
gas
kitchen
anime
builder
hairdresser
security
bakery
bakehouse
fishing
doors
kiosk
market
bathroom
lamps
vacant
insurance(:.*)?
caravan
gift
bicycle
bicycle_rental // sometimes used with shop=rental
insulation
communication
mall
model
empty
wood
hunting
motorcycle
trailer
camera
water
fireplace
outdoor
blacksmith
electronics // used on shop=electronics, see https://wiki.openstreetmap.org/wiki/Key:electronics
fan // e.g. fan=sport, used on shop=fan
piercing // https://wiki.openstreetmap.org/wiki/Key:piercing used on shop=piercing|tattoo
stationery // undocumented with some 91 uses worldwide; used with shop=kiosk|gift|books|tobacco|variety_store etc. likely to indicate if it carries stationaries (and whattypes)
sensory_friendly(:.*)? // see https://wiki.openstreetmap.org/wiki/Proposal:Sensory#sensory_friendly=*
street_vendor // see https://wiki.openstreetmap.org/wiki/Tag:street_vendor=yes
sells(:.*)? // what the shop sells
safety_equipment // what shop=safety_equipment sells
battery // undocumented, seems mostly related to power=plant and similar, but also used on e.g. amenity=vending_machine + vending=electronics + electronics=battery
frame // undocumented, used mostly in Serbia on traffic signs; but also on shop=bicycle to indicate it sell bicycle frames?
paint // undocumented, used on shop=paint and shop=hardware sometimes
// obsoleted information
(demolished|abandoned|disused)(:(?!bui).+)? // remove all abandoned/disused *except* buildings
was:.*
not:.*
damage // if new shop, damage is probably being repaired?
created_by
check_date // we have just checked it!
opening_date // if it no longer exists, that opening_date is obsolete as well
last_checked // https://wiki.openstreetmap.org/wiki/Proposed_features/last_checked
checked_exists:date
pharmacy_survey // undocumented, mostly date of survey?
old_ref // https://wiki.openstreetmap.org/wiki/Key:old_ref
update // undocumented, low-usage, seems to be a date of update or value "yes"
import_uuid // "This tags do not serve an useful function anymore and in general can be removed." - https://wiki.openstreetmap.org/wiki/Key:import_uuid
review // obsolete fixme=* related, see https://wiki.openstreetmap.org/wiki/Key:review
fixme:atp // see https://github.com/mnalis/StreetComplete-taginfo-categorize/issues/29, https://wiki.openstreetmap.org/wiki/Import/All_the_Places_US_data
// classifications / links to external databases
fhrs:.* // tied to restaurant: https://github.com/mnalis/StreetComplete-taginfo-categorize/issues/2
old_fhrs:.*
fvst:.* // tied to restaurant, but for DK: https://wiki.openstreetmap.org/wiki/Key:fvst:navnelbnr
ncat // seems to be to classification for hospitality industry in South Korea (?)
nat_ref // used on ton of amenity=bank in Taiwan
gnis:.* // on amenity=post_office in US; https://wiki.openstreetmap.org/wiki/USGS_GNIS says "If you come across a feature that no longer exists in the real world, feel free to delete it. "
winkelnummer // undocumented, but translates to "shop number"
type:FR:FINESS // on amenity=pharmacy; https://wiki.openstreetmap.org/wiki/Key:type:FR:FINESS says "Each establishment and each legal entity is assigned a 9-character FINESS number"
type:FR:APE // https://wiki.openstreetmap.org/wiki/France/Liste_des_r%C3%A9f%C3%A9rences_nationales - maybe "INSEE code of the main branch of activity of a company"
kvl_hro:amenity // import: mostly amenity type; see https://wiki.openstreetmap.org/wiki/Rostock:Geb%C3%A4ude_und_Strukturen
ref:DK:cvr(:.*)? // official database of Danish businesses; https://wiki.openstreetmap.org/wiki/Key:ref:DK:cvr
certifications? // undocumented https://wiki.openstreetmap.org/wiki/Proposed_features/certification, HOT-related?
transiscope // ecologic transition in progress, seems to be shop attribute. see https://wiki.openstreetmap.org/wiki/Key:transiscope
opendata:type // undocumented, seems to specify type of shop/amenity imported. Used in Toronto,Canada
local_ref
official_ref
ref:thw // undocumented, used mostly (90%) on emergency=disaster_response, also on some office=government in Germany
ref:nav // undocumented, basically only office = government in Norway
ref:GR:kepId // undocumented, used mostly only on office=government in Greece
ref:bufa // German tax office, https://wiki.openstreetmap.org/wiki/Key:ref:bufa
ref:walmart // undocumented, seems to be Walmart shop id
ref:rspo // reference number of a school in Poland, https://wiki.openstreetmap.org/wiki/Key:ref:rspo
ref:cue // undocumented, seems to be school/kindergarten related id in Argentina
ref:regon // undocumented, seems healthcare-related, often used with ref:rspo
ref:BY:trade_register // trade registry in Belarus, https://wiki.openstreetmap.org/wiki/Key:ref:BY:trade_register
ref:vb // undocumented, seems to be craft=plumber related in Norway
ref:comfort // undocumented, seems to be craft=plumber related in Norway
ref:bademilj. // undocumented, seems to be craft=plumber related in Norway -- actually "ref:bademiljø" (using "." for failsafe a UTF-8 handling)
ref:HU:vatin // Hungarian national version of VATID, https://wiki.openstreetmap.org/wiki/Key:ref:HU:vatin
ref:HU:company // undocumented, seems to be Hungarian company-related id (amenity=fuel, shop=*, etc)
ref:ico // Slovak company registration id, https://wiki.openstreetmap.org/wiki/Key:ref:ico
ref:scoutingnl // undocumented, seems to be club=scout id in Netherlands
ref:anlegg // undocumented, seems like sport-facility id in Norway, (but very rarely hits club=* so is detected)
ref:FR:sport_equip // undocumented, seems sports related
ref:FR:RNA // associations id in France, https://wiki.openstreetmap.org/wiki/Key:ref:FR:RNA
ref:FR:CRTA // ref of a tourism feature in France, https://wiki.openstreetmap.org/wiki/Key:ref:FR:CRTA
ref:charity // undocumented, seems to be used on charity shops in UK
// names and identifications
name_?[1-9]?(:.*)?
.*_name_?[1-9]?(:.*)? // handles all of alt_name, old_name, short_name:en, etc. see https://github.com/streetcomplete/StreetComplete/issues/3244#issuecomment-915711994
noname
branch(:.*)?
brand(:.*)?
nobrand
not:brand(:.*)?
network(:.*)? // used like brand, and network:short in healthcare
operator(:.*)?
operator_type // misspelled https://wiki.openstreetmap.org/wiki/Key:operator:type ?
ref // without extra clasification like ref:xxx, it is most likely shop related
ref:vatin(:.*)? // VAT ID for shop
designation // used to record the legal classification of an object, quick check show mostly shop-type related. https://wiki.openstreetmap.org/wiki/Key:designation
SEP:CLAVEESC // from amenity-kindergarten.json - undocumented, seems to be subtype of facility code?
identifier // undocumented, seems office=related
ref:FR:SIRET // organisation number given by INSEE in France https://wiki.openstreetmap.org/wiki/Key:ref:FR:SIRET
ref:FR:SIREN // company number given by INSEE in France https://wiki.openstreetmap.org/wiki/Key:ref:FR:SIREN
ref:FR:NAF // 5-digits code describing organization main activity in France https://wiki.openstreetmap.org/wiki/Key:ref:FR:NAF
(old_)?ref:FR:prix-carburants // reference for fuel stations, see https://wiki.openstreetmap.org/wiki/Key:ref:FR:prix-carburants
ref:HU:(vatin|company|om|ntak) // hungarian company-related IDs, see https://github.com/streetcomplete/StreetComplete/pull/6664
ref:UAI // French id of schools (also used on office=*), https://wiki.openstreetmap.org/wiki/Key:ref:UAI
ref:edubase(:group)? // UK amenity=school id, https://wiki.openstreetmap.org/wiki/Key:ref:edubase
ref:mise // amenity=fuel identified in Italy, https://wiki.openstreetmap.org/wiki/Key:ref:mise
ref:FR:LaPoste // amenity=post_office related in France, https://wiki.openstreetmap.org/wiki/Key:ref:FR:LaPoste
ref:Hermes // undocumented, seems to be mostly post office related in Germany
ref:pol_id // undocumented, seems to be used mostly on amenity=post_office in UK
ref:isil // library reference; https://wiki.openstreetmap.org/wiki/Key:ref:isil
ref:INEP // Brazilian school/kindergarden id, https://wiki.openstreetmap.org/wiki/Key:ref:INEP
ref:coop // Norway COOP shop id, https://wiki.openstreetmap.org/wiki/Key:ref:coop
ref:shop:num // deprecated: Shop branch id number, https://wiki.openstreetmap.org/wiki/Key:ref:shop:num
ref:norgesgruppen // undocumented, used basically only on shop=*
ref:rema // undocumented, used only on shop=* in Norway
ref:tobacco // undocumented, seems to be used mostly in Italy on shop=tobacco
ref:mekonomen // undocumented, used only on shop=* in Norway
ref:google // undocumented, used on amenity=* and shop=*, perhaps Google Knowledge Graph identifier of a shop?
// contacts
contact_person
contact(:.*)?
phone(:.*)?
phone_?[1-9]?
emergency:phone // amenity-based, https://wiki.openstreetmap.org/wiki/Key:emergency:phone
emergency_telephone_code // https://wiki.openstreetmap.org/wiki/Key:emergency_telephone_code
mobile
fax
facebook
instagram
twitter
youtube
telegram
tiktok
email
website_?[1-9]?(:.*)?
app:.*
ownership // changing shop probably changes ownership - https://wiki.openstreetmap.org/wiki/Key:ownership
url
url:official
source_ref:url
owner
ref:website // undocumented, used mostly (91%) on shop=*
// payments
payment(:.*)?
payment_multi_fee
currency(:.*)?
cash_withdrawal(:.*)?
fee
charge // https://wiki.openstreetmap.org/wiki/Key:charge
charge_fee
money_transfer // might be bank, but also shop=stationery+money_transfer=Western Union etc. https://wiki.openstreetmap.org/wiki/Key:money_transfer
donation:compensation // amenity related https://wiki.openstreetmap.org/wiki/Key:donation:compensation
paypoint // undocumented, seems to be related to payments of shop=*
// generic shop/craft attributes
seasonal // 398 combinations worldwide, shop=travel_agency, shop=greengrocer...
time // 385 combinations worldwide; either mistaken opening_hours, or some unknown timestamp
opening_hours(:.*)?
check_(in|out) // undocumented, seems to be checkin/checkout times for tourism=*
wifi
internet
internet_access(:.*)?
second_hand // shop property; unlikely to stay correct if owners change
self_service // shop property; unlikely to stay correct if owners change
automated
license:.*
bulk_purchase
.*:covid19 // delivery:covid19, access:covid19 etc - shop property; unlikely to stay correct if owners change (plus, hopefully it is obsolete)
language:.* // language offered, https://wiki.openstreetmap.org/wiki/Key:language
baby_feeding // 342 uses worldwide, https://wiki.openstreetmap.org/wiki/Key:baby_feeding; id_tagging_schema.json says might be used in office=*
description(:.*)?
description[0-9]
min_age
max_age // used in leisure=amusement_arcade
supermarket(:.*)?
social_facility(:.*)? // shop=gift+social_facility=workshop+social_facility:for=disabled, shop=supermarket+social_facility=food_bank+social_facility:for=underprivileged
functional // undocumented, 15 uses worldwide, seems to be like operational_status
trade
wholesale
sale
smoking(:.*)?
zero_waste
origin // origin of goods sold; https://wiki.openstreetmap.org/wiki/Key:origin
attraction // shop=wine + attraction=winery or attraction=historic + craft=brewery
strapline // "advertasing phrase" https://wiki.openstreetmap.org/wiki/Key:strapline
dog // whether dogs are allowed is at the owner's discretion (in the jurisdictions I'm familiar with)
showroom // undocumented, but probably if the shop has https://en.wikipedia.org/wiki/Showroom
toilets?(:.*)? // Toilet information might change as shop owners change (worth a separate SC quest?)
sanitary_dump_station // used at club=* sometimes
changing_table(:.*)? // changing_table:fee, changing_table:adult etc.
wheelchair(.*)? // eg. wheelchair, wheelchair:description, wheelchair_access etc. Wheelchair access might be added with new owner.
blind // undocumented; blind uses accessibility?
company(:.*)?
stroller // new shop owner might change the layout? (see wheelchair/toilets above)
walk-in
webshop // undocumented, 153 uses, type of webshop
operational_status.*
status // deprecated, https://wiki.openstreetmap.org/wiki/Key:status, seems to be used in combination with shop=* like operational_status=*
drive_through // likely to remain IF the amenity stays the same type which is not a given
surveillance(:.*)? // likely to be changed after a renovation
outdoor_seating // the following depend on the type of amenity there
indoor_seating
colour
access_simple // undocumented, unused, from _id_tagging_schema.json
floor // undocumented, seems to mishmash of surface=* and level=*
product_category // undocumented, seems office=company related, Taiwan-only
guide // https://wiki.openstreetmap.org/wiki/Key:guide; whether a feature provide a guide. Some 92 uses worldwide; mostly with office=guide
source_url // undocumented, mostly seems office/amenity-related
category // undocumented, seems to be type of office/amenity
kids_area // amenity-based, see https://wiki.openstreetmap.org/wiki/Key:kids_area
kids_area:indoor
resort // used worldwide with amenity=doctors/restaurant/... - when amenity is gone, so should this go away. see https://wiki.openstreetmap.org/wiki/Key:resort
since // used worldwide with amenity/shop, seems to be amenity-related year or date of initial establishment
state // Operational state, used worldwide, see https://wiki.openstreetmap.org/wiki/Key:state
temporary // used mostly with healthcase-related, see https://wiki.openstreetmap.org/wiki/Key:temporary
self_checkout
audio_loop // documented at https://wiki.openstreetmap.org/wiki/Tag:audio_loop%3Dyes
related_law(:.*)? // https://wiki.openstreetmap.org/wiki/Key:related_law, used on craft=*
official_status(:.*)? // see https://wiki.openstreetmap.org/wiki/Proposal:Official_status; used on office=government/company/...
// food and drink details
bar
cafe
coffee
microroasting
microbrewery
brewery
real_ale
taproom // undocumented, craft=brewery related
training // 10 users worldwide; like craft=brewery+training=brewing
distillery
drink(:.*)?
cocktails
alcohol
wine([:_].*)?
happy_hours
diet:.*
cuisine // shop property; unlikely to stay correct if owners change
ethnic
tasting
breakfast
lunch
organic // shop property; unlikely to stay correct if owners change
produced_on_site
restaurant
food
pastry
pastry_shop
product
produce
chocolate
fair_trade
butcher
reservation(:.*)?
takeaway(:.*)?
delivery(:.*)? // does shop do delivery, https://wiki.openstreetmap.org/wiki/Key:delivery
caterer
real_fire // 155 uses worldwide, https://wiki.openstreetmap.org/wiki/Key:real_fire
flour_fortified // seems to be craft=grinding_mill related
highchair // baby seating; 321 uses worldwide; https://wiki.openstreetmap.org/wiki/Key:highchair
fast_food
pub
snack
confectionery
drinking_water:refill // cafe/bar/club/resturant related: Indicates if an establishment participates in a water refill network; https://wiki.openstreetmap.org/wiki/Key:drinking_water:refill
// related to repair shops/crafts
services?(:.*)? // shop=car;car_repair, service=car_electrical_repairs;dealer;repair etc.; service:bicycle:retail, service:vehicle:car_parts, service:vehicle:glass, service:vehicle:batteries...
motorcycle:.*
repair
.*:repair // eg. bicycle:repair computer:repair fabrik:repair furniture:repair mobile_phone:repair etc.
electronics_repair(:.*)?
workshop // https://wiki.openstreetmap.org/wiki/Key:workshop
// shop=hairdresser, shop=clothes
unisex
male
female
gender
gender_simple
lgbtq(:.*)? // https://wiki.openstreetmap.org/wiki/Key:lgbtq
gay // https://wiki.openstreetmap.org/wiki/Key:gay
female:signed
male:signed
// healthcare
healthcare(:.*)? // mostly stuff like healthcare=optometrist, shop=optician; but there are some exceptions like healthcare=doctor shop=hairdresser like #4474699292 ??
healthcare_.* // like healthcare_therapist
health
health_.* // health_service:examination, health_specialty:optometry, ... w/shop=optician
speciality // seems to be mistagging of healthcare:speciality
medical_.* // medical_system:western, medical_facility:type=office, ... w/shop=optician
emergency_ward // undocumented; seems to be healthcare services
facility(:.*)?
activities // undocumented; seems to be healthcare services
healthcare_facility(:.*)?
laboratory(:.*)?
blood(:.*)?
blood_components
infection(:.*)?
disease(:.*)?
covid19(:.*)?
COVID_.* // Undocumented: COVID_BED, COVID_ICU, COVID_TEST...
CovidVaccineCenterId
coronaquarantine
hospital(:.*)?
hospital_type_id
emergency_room
sample_collection(:.*)?
bed_count
capacity:beds
part_time_beds
personnel:count
staff_count(:.*)?
admin_staff
doctors // undocumented, usually used with amenity=doctors to specify details
doctors_num
nurses_num
counselling_type
testing_centres
toilets_number
urgent_care
vaccination
clinic
hospital
pharmacy
alternative // used in variety of meaning - but for POIs it is specifying type of healthcare=alternative
laboratory
sample_collection
provided_for(:.*)?
social_facility_for
ambulance
ward
HSE_(code|hgid|hgroup|region) // undocumented, seems to be healthcare-related
collection_centre // undocumented; healthcare related
design // e.g. healthcare=alternative + design=heilkundliche Psychotherapie/Musiktherapie, seems unrelated (or wrong nodes) to power infrastructure documented https://wiki.openstreetmap.org/wiki/Key:design
AUTORIZATIE // undocumented, seems to be healthcare id or type from https://data.gov.ro/dataset/situatia-farmaciilor-din-romania ?
reg_id // undocumented, used only in Liberia, seem to be healt-related
post_addr // undocumented, used only in Liberia, seem to be healt-related
scope // undocumented, seems to healthcare related
ESTADO // undocumented, seems to be health-related ("status" grade?)
NIVSOCIO // undocumented, seems to be health-related
NO // undocumented, seems to be health-related
EMP_EST // undocumented, seems to be health-related
COD_HAB // undocumented, seems to be health-related
CLA_PERS // undocumented, seems to be health-related
CLA_PRES // undocumented, seems to be health-related
snis_code:.* // undocumented, seems to be health-related
hfac_bed // undocumented, seems healthcare-related
hfac_type // undocumented, seems to be type of medical facility
nature // undocumented, healthcare-related e.g. nature=clinic_no_beds
moph_code // undocumented, seems to be healthcare-related code
IJSN:.* // undocumented, seems to be helthcare-related (IJSN:tipoAgrup, IJSN:tipoUnidad), in Brazil
massgis:id // undocumented, seems healthcare-related in Massachusetts
OGD-Stmk:.* // undocumented, seems to be healthcare-related (OGD-Stmk:ARZTNR, OGD-Stmk:OBJECTID), in Austria, possibly related to https://wiki.openstreetmap.org/wiki/AT/Steiermark/OGD#OGD_Steiermark
paho:.* // undocumented, seems healthcare-related, in Republica Dominicana; maybe https://wiki.openstreetmap.org/wiki/WikiProject_Haiti/Status/Hospitals#Hospitals_identified_by_WHO/PAHO related? (paho:commune, paho:commune_id, paho:department, paho:district_id, paho:id, paho:region_id, paho:type)
panchayath // undocumented, seems to be healthcare-related, in India
pbf_contract // undocumented, seems to be healthcare-related, in Burundi
pcode // undocumented, seems to be healthcare-related, used mostly in Africa and Republica Dominicana
pe:minsa:.* // undocumented, seems to be healthcare-related, in Peru (pe:minsa:categoria, pe:minsa:codigo)
who:.* // undocumented, seems to be healthcare-related in Africa. (who:code_csref, who:distance, who:nbre_village, ...)
pharmacy:category
tactile_paving // https://wiki.openstreetmap.org/wiki/Key:tactile_paving used with healthcare -- if healthcare is gone, likely to change status when new owner renovates
HF_(ID|TYPE|N_EN) // undocumented, seems to be imported hospital types/id/description in Myanmar
RoadConn // undocumented, seems to be used only on imported hospitals in Myanmar
bin // https://wiki.openstreetmap.org/wiki/Key:bin, sometimes used on healthcare=*. When that is gone, likely the wastebakets are gone too
hiv(:.*)? // https://wiki.openstreetmap.org/wiki/Key:hiv
ref:ZonaSanitaria // undocumented, seems healthcare-related in Uruguay
ref:cuie_codigo // undocumented, seems healthcare-related in Uruguay
ref:sisa_(codigo|tipologia) // Health establishments in Argentina, https://wiki.openstreetmap.org/wiki/Key:ref:sisa_tipologia & https://wiki.openstreetmap.org/wiki/Key:ref:sisa_codigo
ref:SUKL // undocumented, seems to be healthcare=pharmacy id in Czechia
ref:sede // undocumented, seems healthcare-related in Italy
ref:msal // healthcare=pharmacy id in Italy https://wiki.openstreetmap.org/wiki/Key:ref:msal
ref:(micro)?red // undocumented, seems healthcare-related in Peru
ref:category // undocumented, seems healthcare-related in Peru
ref:osakidetza // undocumented, seems healthcare-related in Spain
ref:ogdsteiermark // undocumented, seems healthcare and fire department / emergency services related in Austria. related to https://wiki.openstreetmap.org/wiki/AT/Steiermark/OGD ?
ref:luebeck // undocumented, seems healthcare=pharmacy related in part of Germany
ref:nmd // undocumented, seems amenity=pharmacy related id in in Norway
ref:nhn // undocumented, seems amenity=doctors related id in in Norway
ref:hvakostertannlegen // undocumented, seems amenity=dentist related in Norway
ref:boots // undocumented, seems healthcare=pharmacy related in Norway
ref:apotek1 // undocumented, seems healthcare=pharmacy related in Norway
ref:GB:nhs_ods // UK healthcare NHS ODS Code https://wiki.openstreetmap.org/wiki/Key:ref:GB:nhs_ods
ref:GB:cqc_location // UK NHS classified healthcare locations - Care Quality Commission (England) location ID https://wiki.openstreetmap.org/wiki/Key:ref:GB:cqc_location
ref:FR:FINESS // id of health places or social care places in France - https://wiki.openstreetmap.org/wiki/Key:ref:FR:FINESS
ref:FR:RPPS // healthcare-related in France https://wiki.openstreetmap.org/wiki/Key:ref:FR:RPPS
ref:fps_health(:.*) // undocumented, seems healthcare-related in Belgium
ref:doh // undocumented, seems healthcare-related in Philippines
ref:csioz // Poland pharmacies id https://wiki.openstreetmap.org/wiki/Key:ref:csioz
ref:CNES // Healthcare in Brazil id, https://wiki.openstreetmap.org/wiki/Key:ref:CNES
// accommodation & layout
rooms
stars
accommodation
beds
capacity(:persons)?
laundry_service
guest_house
// amenity=place_of_worship
deanery
subject:(wikidata|wikipedia|wikimedia_commons)
church // undocumented; seems related to amenity=place_of_worship ?
church:type // church affiliation, used on amenity=place_of_worship https://wiki.openstreetmap.org/wiki/Key:church:type
// schools
capacity:(pupils|teachers)
grades
population:pupils(:.*)?
school:(FR|gender|trust|type|type_idn|group:type|selective)
primary // undocumented, sometimes used with amenity = school, perhaps with meaning of "primary school"?
// clubs
animal(_breeding|_training)?
billiards(:.*)?
board_game
sport_1
sport:boating
boat:type
canoe(_rental|:service)?
kayak(_rental|:service)?
sailboat(_rental|:service)?
horse_riding
rugby // used with club=sport
boules
callsign
card_games
car_service
catastro:ref
chess(:.*)?
children
climbing(:.*)?
club(:.*)?
communication(:amateur_radio.*)
community_centre:for
dffr:network
dormitory
education_for:ages
electrified
esperanto
events_venue
family
federation
free_flying(:.*)?
freemasonry(:.*)?
free_refill
gaelic_games(:.*)?
membership
military_service
model_aerodrome(:.*)?
mode_of_organisation(:.*)?
snowmobile
social_centre(:for)?
source_dat
tennis
old_website
organisation
school_type
scout(:type)?
fraternity
live_music
lockable
playground(:theme)?
nudism // https://wiki.openstreetmap.org/wiki/Key:nudism often used used with club=nudism
music_genre
length // swimming pool length tagged on club https://www.openstreetmap.org/node/8733856290
fire_station:type:FR // used on some club=cadet, cadet=fire which also have amenity=fire_station.
cadet // used with club=cadet - see https://wiki.openstreetmap.org/wiki/Key:cadet
observatory:type // https://wiki.openstreetmap.org/wiki/Key:observatory:type used with club=astronomy
tower:type // used with amenity = community_centre, club = amateur_radio
zoo // https://wiki.openstreetmap.org/wiki/Key:zoo on e.g. club=aviculture zoo=aviary
shooting // https://wiki.openstreetmap.org/wiki/Key:shooting sometimes used on club=sport, sport=shooting
commons // undocumented, used with club=social, or club=foodcoop with identity=commons
groomer // undocumented, seems to be used at single place with club=*
group_only // https://wiki.openstreetmap.org/wiki/Key:group_only used with club=scout and similar
hazard // used with club=sport sport=shooting|archery -- https://wiki.openstreetmap.org/wiki/Key:hazard
identity // undocumented, identity=commons used with club=foodcoop|culture|... but also identity=permaculture on club=environment_protection etc
interaction // undocumented, e.g. interaction=buying_and_selling on club=foodcoop
logo // undocumented, seems to be link to graphical logo of the club=sport
maxheight // seems to be used with club=automobile
provides // undocumented, seems to be about what club=* provides; e.g. provides=culture;spaces;participation;community
regional // undocumented, seems to be about geographic locality for club=foodcoop
scale // undocumented, used on club=model_railway, likely model railway scale
site // https://wiki.openstreetmap.org/wiki/Key:site used on club=scout|youth relations sometimes e.g. with site=community_centre
plots // undocumented, seems to be number of plots for club=gardening
allotments // mostly plot|gardening, see https://wiki.openstreetmap.org/wiki/Tag:allotments=plot
local_food // undocumented, 7 uses worldwide, seems to be used with club=local_food
monitoring:pedestrian // seems to be used on club=sport + sport=running; if that club is gone, probably monitoring equipment will be gone too
recording:automated // seems to be used on club=sport + sport=running; if that club is gone, probably monitoring equipment will be gone too
yacht // seems related to club=yacht
background_music // undocumented, used on club=music
url:spaceapi // used on club=computer (and leisure=hackerspace); see https://wiki.openstreetmap.org/wiki/Key:url:spaceapi
openfire // used on some club=scout / tourism=camp_site https://wiki.openstreetmap.org/wiki/Key:openfire
fraternity(:.*)? // seems to be club related
ref:DSV // undocumented, used on club=sailing in Germany
ref:FOS // undocumented, used on club=scout in Belgium
ref_fftt // undocumented, seems to be used on club=*
// misc specific attributes
clothes
shoes
tailor
beauty // only applies to beauty shops, anyway
tobacco
carpenter
furniture
lottery
sport
dispensing
tailor:.*
gambling
material // 27 uses worldwide
raw_material // 10 uses worldwide; craft=cnc_machining;laser_cutting + raw_material=wood
stonemason // craft=stonemason + stonemason=tombstones
studio // 26 uses worldwide; like amenity=studio+craft=atelier+studio=music
scuba_diving(:.*)? // id_tagging_schema.json says might be used with shop=scuba_diving; https://wiki.openstreetmap.org/wiki/Tag:shop=scuba_diving
polling_station // id_tagging_schema says it might be used on amenity=post_office https://wiki.openstreetmap.org/wiki/Key:polling_station
collector // with shop=collector, https://wiki.openstreetmap.org/wiki/Tag:shop=collector
books
agrarian
musical_instrument
massage
parts // seems to be shop related https://wiki.openstreetmap.org/wiki/Key:parts
post_office(:.*)? // used in combination like post_office=post_partner shop=supermarket|convenience
religion // eg. religion=christian + shop=books|gifts
denomination // shop=religion, shop=funeral_directors etc., https://wiki.openstreetmap.org/wiki/Key:denomination
rental // in combination with shop=rental
.*:rental
tickets:.* // if shop sells tickets:public_transport=yes etc.
public_transport // shop=ticket + public_transport=ticket_office; 285 combinations worldwide
goods_supply // undocumented. eg. craft=electrician + goods_supply=inside_the_camp; 60 uses only in one place?
pet // pet shop details, https://wiki.openstreetmap.org/wiki/Key:pet
appliance // undocomented, seems related to craft=electrician+appliance=Washing_Machines Other etc.
artwork_type // like craft=handicraft+artwork_type=painting
charity // like craft=electronics_repair+charity=yes
company // like company=office+craft=carpenter or company=logistics+craft=transportation
crop // like craft=gardener+crop=mushroom
dry_cleaning // like craft=tailor+dry_cleaning=yes
factory // 12 uses worldwide (yeah, but inside 0.01%)
feature // like craft=carpenter+feature=workshop_feature
air_conditioning // change of tenants often means a renovation
atm // a bank with atms moves out and takes the atms with it
vending
vending_machine
recycling_type // just 12 nodes worldwide, sometimes eg. "amenity=recycling + craft=cleaning"; so probably all amenity=recycling + recycling* should be removed?
museum
license_classes // driving school subattribute - https://wiki.openstreetmap.org/wiki/Key:license_classes
dance:.*
isced:level
school
preschool
university
research_institution
research
member_of // undocumented, seems to be related to office=research
topic // undocumented, used mostly in office=research/association, possible duplicate of research=* ?
townhall:type
parish // https://wiki.openstreetmap.org/wiki/Key:parish e.g. office=parish
police // https://wiki.openstreetmap.org/wiki/Key:police e.g. office=government + police=offices
government // related to office=goverment, which we now allow removing
thw:(lv|rb|ltg) // undocumented; import? used on office=government; seems to be related to Technisches Hilfswerk (German federal agency for technical relief / civil protection organization) https://www.wikidata.org/wiki/Q697698
office // https://wiki.openstreetmap.org/wiki/Key:office
administration // undocumented; details for office=administration
administrative // undocumented; details for office=government e.g. administrative=taxes
association // details for office=association, see https://wiki.openstreetmap.org/wiki/Key:association
transport // undocumented, used with office=transport
utility // e.g. office=energy_supplier + utility=electric, https://wiki.openstreetmap.org/wiki/Key:utility
consulting // used with office=consulting, https://wiki.openstreetmap.org/wiki/Key:consulting
Commercial // undocumented, seems to be shop typ - mostly "Toko Kelontong" (Grocery store) in Indonesia
commercial // undocumented, e.g. office=logistics + commercial=transport
private // undocumented; used in combination with access=*; e.g. shop=craft + access=private + private=students
taxi // e.g. shop=taxi or office=taxi + taxi=minicab, see https://wiki.openstreetmap.org/wiki/Key:taxi
admin_level // often used with office=government, see https://wiki.openstreetmap.org/wiki/Key:admin_level
official_status // proposed, used with office=administrative mostly in Russia, see https://wiki.openstreetmap.org/wiki/Proposed_features/Official_status
target // used with office=diplomatic, see https://wiki.openstreetmap.org/wiki/Key:target
liaison // used with office=diplomatic, see https://wiki.openstreetmap.org/wiki/Key:liaison
diplomatic(:.*)? // used with office=diplomatic
embassy
consulate
aeroway // used with office=aviation
department // used with office=university, see https://wiki.openstreetmap.org/wiki/Key:department
faculty // used with office=university, see https://wiki.openstreetmap.org/wiki/Key:faculty
aerospace:product // used with office=company etc., see https://wiki.openstreetmap.org/wiki/Key:aerospace:product
boundary // used with office=governament / research / political_party
population // used with office=government, see https://wiki.openstreetmap.org/wiki/Key:population,
diocese // used with office=parish / religion, see https://wiki.openstreetmap.org/wiki/Key:diocese
depot // undocumented, used with office=travel_agent/company
cargo // used with office=logistics, see https://wiki.openstreetmap.org/wiki/Key:cargo
function // undocumented, used as function=retail/headquarters with office=*
game // undocumented, used mostly in Japan, e.g. game=studio with office=company
party // undocumented, used with office=political_party
political_party.* // mostly used on office=political_party, see https://wiki.openstreetmap.org/wiki/Key:political_party
telecom(munication)? // used with office=telecommunication / it, see https://wiki.openstreetmap.org/wiki/Key:telecom
service_times // used with office=religion, https://wiki.openstreetmap.org/wiki/Key:service_times
kitchen:facilities // undocumented, likely office-related
it:(type|sales) // undocumented, seems to be type of office=it
cannabis:cbd // undocumented, used in combination with shop=cannabis
bath:type
bath:(open_air|sand_bath) // deprecated|undocumented, https://wiki.openstreetmap.org/wiki/Key:bath:open_air
animal_boarding
animal_shelter
mattress
screen // cinema related, https://wiki.openstreetmap.org/wiki/Key:screen
monitoring:weather // https://wiki.openstreetmap.org/wiki/Key:monitoring:weather often used (perhaps incorrectly) with office=government
public // undocumented, often user with office=government
theatre // undocumented, used with amenity=theatre (theatre type/existence)
culture // undocumented, used with e.g. amenity=library, amenity=threatre
library // undocumented, used with amenity=school / club=social
cooperative(:.*)? // see e.g. https://wiki.openstreetmap.org/wiki/Tag:cooperative=agricultural, mostly used with office=cooperative (also undocumented e.g. cooperative:agricultural, cooperative:network)
winery // shops/resturatnrs related, see https://wiki.openstreetmap.org/wiki/Key:winery
curtain // undocumented, seems to be shop=fabric/interior_decoration/second_hand/... and amenity=shelter related
lawyer(:.*)? // e.g. lawyer:speciality used on office=lawyer
local_authority(:.*)? // see e.g. https://wiki.openstreetmap.org/wiki/Key:local_authority:FR, used on office=government
equipment // undocumented, used on office=cooperative and related to id
hackerspace // undocumented, leisure=hackerspace related
camp_site // camp_site=reception & office=camping
camping // e.g. amenity=cafe+camping=yes
bbq // https://wiki.openstreetmap.org/wiki/Key:bbq, used on e.g. tourism=camp_site
static_caravans // used on https://wiki.openstreetmap.org/wiki/Tag:tourism=camp_site
emergency(:.*)? // https://wiki.openstreetmap.org/wiki/Key:emergency
evacuation_cent(er|re)
education
engineering
forestry
foundation
lawyer
logistics
military
community_centre
bank
operational // trolltag referring to current POI
users_(PLWD|boy|elderly|female|girl|men) // yes, mapping it in OSM is highly dubious; see https://www.openstreetmap.org/changeset/158333852
## StreetComplete now automagically removes matching source:$key (and check_date:$key); see https://github.com/streetcomplete/StreetComplete/issues/6057
## so our Makefile will invoke generate_kotlin.pl in such a way that those are no longer included in sc_to_remove.txt, even when they are listed here (where they need to remain to be detected by "make ## update")
## Also they might be useful to other potential consumers of this data (who may be interested in those more popular source:$key and check_data:$key tags) who might want to invoke generate_kotlin.pl without skipping them.
check_date:website // some 1104 uses worldwide
check_date:currency(:.*)? // mostly bitcoin (XBT), some 6111+ uses worldwide
check_date:opening_hours // when shop and its opening hours go, so should their check_date
check_date:smoking // some 323 uses worldwide
check_date:service:.* // some ~600 uses worldwide, mostly about bicycles
source:damage // some 16k+ uses worldwide, but not all are used on shop/amenity
source:opening_hours // some 3931 uses worldwide
source:name // some 1.5 million uses worldwide, but not all are used on shop/amenity
source:shop // 629 combinations worldwide, mostly used with shop=*
source:smoking // some 98 uses worldwide
### KEYS TO PROBABLY REMOVE ###
Comments? // might be either, but probably more likely shop-related
comments? // might be either, but probably more likely shop-related
entrance:(width|step_count|kerb:height) // tricky, but details of the entrance are possibly going to change with new owners
fenced // https://wiki.openstreetmap.org/wiki/Key:fenced used with club=sport usually; might change if sport is gone
motor_vehicle // access to club=sport|gardening..., may change with new owners
shelter // used on https://wiki.openstreetmap.org/wiki/Tag:amenity=lavoir to indicate whether it has shelter
### KEYS TO KEEP ###
// let us start with KEYS_THAT_SHOULD_NOT_BE_REMOVED_WHEN_PLACE_IS_REPLACED, which was used previously before StreetComplete v35.0
source_?[1-9]?(:.*)? // do not remove it generally, see https://github.com/streetcomplete/StreetComplete/issues/3244, but note that StreetComplete will also automagically remove matching source:$key (and check_date:$key): https://github.com/streetcomplete/StreetComplete/issues/6057
source_ref // geometry from photo, see https://wiki.openstreetmap.org/wiki/Photo_mapping#Tagging_and_storage
Source
survey // undocumented, mostly e.g. survey=GPS or survey=2022-05-07
attribution
import
landuse
residential // https://wiki.openstreetmap.org/wiki/Key:residential
historic(:.*)?
heritage(:.*)?
OnroerendErfgoed:criteria // apparently some heritage identifier, likely linked to building not POI - see https://wiki.openstreetmap.org/wiki/Key:heritage
lda:criteria
nrhp:criteria
nrhp:inscription_date
building(:.*)?
(demolished|abandoned|disused):building(:.*)?
building_type
house // refers to building itself, see https://wiki.openstreetmap.org/wiki/Key:house
man_made
roof:.*
windows // does the building have windows? https://wiki.openstreetmap.org/wiki/Key:windows
architect(:.*)?
engineer(:.*)? // https://wiki.openstreetmap.org/wiki/Key:engineer
year_of_construction // building related: https://wiki.openstreetmap.org/wiki/Key:year_of_construction
construction_date // usually building-related, see https://wiki.openstreetmap.org/wiki/Key:construction_date
covered
design:code:SPb // building-related, see https://wiki.openstreetmap.org/wiki/RU:Key:design:code:SPb
design:ref // building-related, see https://wiki.openstreetmap.org/wiki/Key:design:ref
pmfsefin:idedif // building-related, see https://wiki.openstreetmap.org/wiki/Key:pmfsefin:idedif
uuid:building
IPP:(CodLote|CodQuadra) // undocumented, building related import - see https://wiki.openstreetmap.org/wiki/Rio_Olympics_%E2%80%93_Tutorial_para_Importa%C3%A7%C3%A3o_de_Edifica%C3%A7%C3%B5es
(proposed:)?listed_status // building related, see https://wiki.openstreetmap.org/wiki/Key:listed_status
atmotorway // refers to location (is it accessible from motorway and therefore restricted), not affected by changing POI
addr[1-9]?:.*
old_addr[1-9]?:.*
is_in(:.*)?
address
nohousenumber
noaddress
addr // seems to be address related, but undocumented
airside // whether shop is inside airport. Related to physical location, not specific shop
not:addr:postcode
postal_code
place
city
country
county // used in Liberia with healthcare, address-based
district // used in Liberia with healthcare, address-based
sub_district // used in Liberia with healthcare, address-based
us.fo:[Aa]dressutal // integer used for sync, see https://wiki.openstreetmap.org/wiki/Import/Catalogue/usfo , automatic translation from Danish says "Address number"; used for import syncing - see https://www.openstreetmap.org/changeset/1888617
quartier // undocumented, seems location based, 5k+ uses worldwide
Commune // undocumented, seems location based, 4k+ uses worldwide, https://en.wikipedia.org/wiki/Communes_of_France
City // undocumented, seems location based, 4k+ uses worldwide
street // undocumented, seems location based, 5k+ uses worldwide
sector // undocumented, seems location based, 6k+ uses worldwide
region // undocumented, used mostly in New York, USA
locality // undocumented, seems location based
province // undocumented, seems location based
taluk // undocumented, seems location-based
LOCALIDAD // undocumented, seems location based (also seems health-related)
LGA // undocumented, seems location based (also seems health-related)
IBGE:COD_UNICO_ENDERECO // undocumented, seems to be Brasilian address-related
location // https://wiki.openstreetmap.org/wiki/Key:location
location-Accuracy
location-Altitude
level(:.*)?
levels // undocumented, possibly mistakenly clone of https://wiki.openstreetmap.org/wiki/Key:building:levels
indoor(:.*)?
room
landmark // location based, see https://wiki.openstreetmap.org/wiki/Key:landmark
layer
ele
height
altitude
author // undocumented, seems to be used instead of changeset user? https://wiki.openstreetmap.org/wiki/Key:author
authorization // undocumented, seems to be mostly some small integer?
area
min_height // building-related, https://wiki.openstreetmap.org/wiki/Key:min_height
floor:material // lower side of surface=* (as seen from outside), building-based, see https://wiki.openstreetmap.org/wiki/Key:floor:material
FIXME
fixme
note(:.*)?
fixme:type
type // used in relations, e.g., type=multipolygon
caravans // seems to happen on tourism=camp_site which is also tagged with shop=*
tents
shower
buildingpart
door // part of the physical building, likely to stay? https://wiki.openstreetmap.org/wiki/Key:door
barrier
wall
fence_type
// fuel stations and craft=boatbuilder (which we do not target)
guid:belorusneft // undocumented, seems to be amenity=fuel related, which we do not target. (but which may contain shop=convenience etc)
fuel:.*
compressed_air
hgv:lanes
car_wash
vacuum_cleaner
seamark:.* // eg. craft=boatbuilder; seamark:small_craft_facility:category=boatyard; seamarktype=small_craft_facility
waterway // eg. craft=boatbuilder; waterway=boatyard
ruins // 10 uses worldwide, already ruins, so just specify craft of old ruins, like craft=oil_mill+ruins=yes+start_date=1860+tourism=attraction
not:name // https://wiki.openstreetmap.org/wiki/Key:not:name
lbcs:.* // address related import, https://wiki.openstreetmap.org/wiki/Kansas/Shawnee_County/Import
chicago:building_id
arivac:.* // location data, https://wiki.openstreetmap.org/wiki/Philippines/Data_import_Arivac_Bohol#Arivac_donated_Bohol_data
lacounty:.* // parcel identifier import, https://wiki.openstreetmap.org/wiki/Key:lacounty:ain
nysgissam:.* // address data, https://wiki.openstreetmap.org/wiki/New_York_(state)/NYS_GIS_SAM_Address_Points_Import
at_bev:.* // australian address dataset, https://wiki.openstreetmap.org/wiki/Key:at_bev:addr_date
castle_type // building related, https://wiki.openstreetmap.org/wiki/Key:castle_type
nycdoitt:bin // building id
fid // not documented, but used much more on building (58%) than on shop/craft (11%+2%)
wikimedia_commons // picture, so quite more likely to show building itself
mapillary // picture, so quite more likely to show building itself (street view mostly)
panoramax // like mapillary
image // picture
image:.* // image subtags used by a single mapper
size // far more common (and less error-prone) to define width=*, height=* and length=* separately; https://wiki.openstreetmap.org/wiki/Key:size
industrial // used with landuse=industrial; https://wiki.openstreetmap.org/wiki/Key:industrial
project:opencities_abidjan // undocumented; seems to be import related
highway // craft misused; eg. craft=carpenter + highway=service + service=driveway + surface=asphalt; or craft=metal_construction + highway=secondary_link
utahagrc:parcelid // https://wiki.openstreetmap.org/wiki/Key:utahagrc:parcelid
WroclawGIS:building:ID // Poland buildings
mhs:.* // historical monuments in France? https://wiki.openstreetmap.org/wiki/Key:ref:mhs - mhs:inscription_date
sangis:.* // address-related, https://wiki.openstreetmap.org/wiki/SanGIS
listed_status // official listed status of a building or other structure, usually due to their historical significance, https://wiki.openstreetmap.org/wiki/Key:listed_status
divipola // The Administrative Political Division of Colombia - see https://wiki.openstreetmap.org/wiki/ES:Key:divipola
entrance:ramp // used a lot for pharmacies in Belgium. Probably more building than shop related. https://wiki.openstreetmap.org/wiki/Key:entrance:ramp
landcover // land data, not POI data
massgis:.* // https://wiki.openstreetmap.org/wiki/Key:massgis:ARTICLE97 and https://wiki.openstreetmap.org/wiki/MassGIS
ref:RS:(kucni_broj|ulica|naselje|grad|okrug|pokrajina) // address related, see https://wiki.openstreetmap.org/wiki/Key:ref:RS:kucni_broj & https://wiki.openstreetmap.org/wiki/Key:ref:RS:opstina
ref:bag // buildings and addresses in the Netherlands, see https://wiki.openstreetmap.org/wiki/Key:ref:bag
ref:caclr // undocumented import tag, possible address related https://wiki.openstreetmap.org/wiki/Key:ref:caclr
ref:LV:addr // addresses in Latvia id, https://wiki.openstreetmap.org/wiki/Key:ref:LV:addr
ref:minvskaddress // address identifier in Slovakia, https://wiki.openstreetmap.org/wiki/Key:ref:minvskaddress
ref:gurs:(sta_sid|hs_mid) // building and address import in Slovenia, https://wiki.openstreetmap.org/wiki/Key:ref:gurs:sta_sid & https://wiki.openstreetmap.org/wiki/Key:ref:gurs:hs_mid
ref:planningapp // undocumented, seems to be building related in GB, comes often with ref:GB:uprn too
ref:locallist // undocumented, seems to be building related in GB, comes often with ref:GB:uprn too
ref:ruian:(building|addr) // building / address id in Czechia, https://wiki.openstreetmap.org/wiki/Key:ref:ruian:building & https://wiki.openstreetmap.org/wiki/Key:ref:ruian:addr
ref:athensclarkeaddress // undocumented, used in Georgia, USA - used on nodes with just addresses
ref:UrbIS // buildings and addresses in Brussels, Belgium - https://wiki.openstreetmap.org/wiki/Key:ref:UrbIS
ref:vcgi:esiteid // undocumented, used in Vermont, USA - used on nodes with just addresses; maybe related to https://wiki.openstreetmap.org/wiki/Vermont_Towns_Import
ref:linz:(address_id|building_id|hydrographic_id|topo50_id) // https://wiki.openstreetmap.org/wiki/LINZ seems to be address/building/topo related
ref:nid // heritage in Poland, https://wiki.openstreetmap.org/wiki/Key:ref:nid
ref:BLfD // German monuments (but matches some office=government/religion/charity), https://wiki.openstreetmap.org/wiki/Key:ref:BLfD
ref:miabldg // building id, https://wiki.openstreetmap.org/wiki/Key:ref:miabldg
ref:mhs // French heritage https://wiki.openstreetmap.org/wiki/Key:ref:mhs, (but very rarely hits craft=* so is detected)
ref:nrhp // USA NRIS ID, for historic sites and structures. https://wiki.openstreetmap.org/wiki/Key:ref:nrhp, (but very rarely hits club=* so is detected)
ref:lda // undocumented, seems to be heritage related in Germany , (but very rarely hits club=* so is detected)
ref:OnroerendErfgoed // undocumented, seems heritage-related in Belgium, translates to "Immovable Heritage", sometimes hits amenity=place_of_worship
ref:GB:nhle // heritage buildings in GB, https://wiki.openstreetmap.org/wiki/Key:ref:GB:nhle
ref:GB:uprn // Unique Property Reference Number in GB, https://wiki.openstreetmap.org/wiki/Key:ref:GB:uprn
ref:FR:SDIS:GRPT // undocumented, seems firestation related region or something in France, (but very rarely hits club=* so is detected)
ref:FR:RNB // building ref in France, https://wiki.openstreetmap.org/wiki/Key:ref:FR:RNB
ref:ES:catastro // undocumented, seems to be cadastral data in Spain
ref:bygningsnr // identifier for buildings in Norway, https://wiki.openstreetmap.org/wiki/Key:ref:bygningsnr
ref:inspire // undocumented, used on different heritage related tags, hits some amenity=place_of_worship
### KEYS TO PROBABLY KEEP ###
maxspeed
lanes
oneway // misuse? eg. craft=metal_construction + highway=secondary_link + oneway=yes...
surface // seems to be mostly unrelated; like amenity=parking + craft=winery + surface=asphalt etc.
inscription // might be building-related, see https://github.com/mnalis/StreetComplete-taginfo-categorize/issues/4
construction // related to building ?
year // 10 uses worldwide, undocumented
lastcheck // last check of what? unknown/undocumented, so keep?
last_check // last check of what? unknown/undocumented, so keep?
date // could be related to historic buildings, so should stay: https://wiki.openstreetmap.org/wiki/Key:date
start_date
survey(:name|:date|_date)
source_date
source_type_(survey|imagery|GPS|walking_paper)
addr.source:(housenumber|street) // undocumented
STATE // unclear as undocumented, seems to be a mix of operational "state" (amenity-based) and location-based (i.e. misspell "addr:state"). In our case probably mostly meaning "addr:state" in California
KSJ2:.* // http://nlftp.mlit.go.jp/ksj/jpgis/datalist/KsjTmplt-P02-v2_0.html says "This is a collection of data on the locations, types, names, addresses, managers, etc. of public offices, schools, hospitals, post offices, social welfare facilities, etc. nationwide"; also https://wiki.openstreetmap.org/wiki/Import/Catalogue/Japan_KSJ2_Import
kvl_hro:type // import: mostly building type, but could be amenity too; see https://wiki.openstreetmap.org/wiki/Rostock:Geb%C3%A4ude_und_Strukturen
b5m:.* // undocumented, seems to be map/building related?
it:fvg:ctrn:.* // seems to be geometry related; https://wiki.openstreetmap.org/wiki/CTRN_Friuli_Venezia_Giulia
dcgis:.* // many are building related (note "dataset" below), see https://wiki.openstreetmap.org/wiki/Washington_DC/DCGIS_imports
dataset
project:eurosha_2012 // undocumented, https://wiki.openstreetmap.org/wiki/Chad ?
cosmha // not documented, see https://wiki.openstreetmap.org/wiki/WikiProject_Haiti/Status/Hospitals
lojic:bgnum // building ID, https://wiki.openstreetmap.org/wiki/Louisville,_Kentucky/Building_Outlines_Import
maaamet:ETAK // undocumented, 474 uses worldwide, might be address-related due to other tags like "source:addr=Maa-amet 2013"
osm_id // undocumented, 244 uses worldwide
project // undocumented, 643 uses worldwide
project:pdevii // undocumented, 337 uses worldwide
usar_addr:edit_date // undocumented, 279 uses worldwide
bmo:type // https://wiki.openstreetmap.org/wiki/BMO - Cadastre related for Brest, France?
osm_type // undocumented, mostly used in Nigeria (914 times); confusing but does not seem shop-related, but geometry-related
previously // reference old node it replaced for history tracking, see https://wiki.openstreetmap.org/wiki/Key:previously
comoros-dgsc:code // undocumented, Moroni island only, seems to be location-based
full_id // undocumented, used only in Pointe-Noire
GNS:.* // GNS import seems feature related, https://wiki.openstreetmap.org/wiki/Key:GNS:dsg_code
HE_ref // feature related import in UK, https://wiki.openstreetmap.org/wiki/Key:HE_ref
id:uuid // undocumented, used mostly in Africa
IOM:project // undocumented, used mostly in Republica Dominicana
wb_pb:id // undocumented, used in Kenya
project:.* // undocumented - maybe part of the mapping project? e.g. project:anr_cohesion_bouake, project:geoloc_unicef, project:geoloc_unicef:id, project:mappingforniger, project:oif-dfen_carteinnov
FID // undocumented - few hundred uses on shop=* / club=*, but 87% are used in combination with building=*
ref:at:bda // Austrian monuments, amenity=place_of_worship related. https://wiki.openstreetmap.org/wiki/Key:ref:at:bda - probably should stay even if church is no longer active?
entrance // entrance itself is probably going to stay at the same place unless bigger renovations are being made
waste:disposal // undocumented, used about 60 times in one place
water_tank:quantity // undocumented, used about 60 times in one place
water_supply
water_source:id
drinking_water // likely to stay?
lit // likely to stay, or not? old 253 uses worldwide...
foot // 13 uses worldwide
substation // 11 uses worldwide; misuse of craft like building=yes+craft=pottery+substation=transmission+voltage=220000
buildings:floor // undocumented, only in Jakarta, likely misspelling of undocumented building:floor, likely building-related
building_status // undocumented, seems building-related
elevation // undocumented, likely duplicate of https://wiki.openstreetmap.org/wiki/Key:ele and thus building-related
fire_operator // likely location-related, see see https://wiki.openstreetmap.org/wiki/Key:fire_operator
fire_rank // likely building-related, see https://wiki.openstreetmap.org/wiki/Key:fire_rank
flood_prone // likely building-related, https://wiki.openstreetmap.org/wiki/Key:flood_prone, used mostly in Jakarta on building=* / office=*
M:hazard_prone // undocumented, possibly related to https://wiki.openstreetmap.org/wiki/Key:hazard_prone which is location-based
water_source // https://wiki.openstreetmap.org/wiki/Key:water_source, likely building-related
wikidata // Tricky. Could be about the POI (in which case it should go) or about the building (in which case it should stay).
wikipedia(:.*)? // Tricky. Could be about the POI (in which case it should go) or about the building (in which case it should stay).
name_disaster // https://taginfo.openstreetmap.org/keys/?key=name_disaster#values
loc_ref // hardly documented https://wiki.openstreetmap.org/wiki/Key:loc_ref
loading_dock // undocumented, used about 50 times in one place
access // sometimes logical like craft=gardener + access=agricultural; sometimes mistag like amenity=prison + barrier=wall + craft=insulation
access:roof // used in about 1000 amenity=bank
condition // ambiguous, https://wiki.openstreetmap.org/wiki/Key:condition
cellar_door // undocumented, only used 100 times in south Australia with craft=winery
cellar:use
natural
parking
Observation // undocumented, seems to be used either on towers and other tall things to mention what is observable from there, or at highways in capacity of note=*
antenna:type // undocumented, related to radioameteur clubs? see https://www.openstreetmap.org/note/4123928 https://www.openstreetmap.org/note/4123930 https://www.openstreetmap.org/note/4123931
bench // https://www.openstreetmap.org/note/4123918 https://www.openstreetmap.org/note/4123920 https://www.openstreetmap.org/note/4123922
floating // https://wiki.openstreetmap.org/wiki/Key:floating club=sport,sport=swimming|kayak - but might relate to pier or stationed boat instead
ft_link // undocumented, links to http://www.freietonne.de/ maritime seamarks; used with club=yachting - but seamark:type=harbour etc. will probably remain evenif yachting club is gone
garden:type // used with club=gardening and such but on leisure=garden, so keep it even if club is gone - see https://wiki.openstreetmap.org/wiki/Key:garden:type
motorboat // used on club=yacht; but also leisure=marina so likely to remain even when club is gone
protect(ed|_class) // sometimes used on club=scout|hunting|freemasonry|fraternal_order but likely to stay even if club is gone; https://wiki.openstreetmap.org/wiki/Key:protect_class https://wiki.openstreetmap.org/wiki/Key:protected
protection_title // used on club=hunting|aeronautical but likely to stay even if club is gone, see https://wiki.openstreetmap.org/wiki/Key:protection_title
reference_point // https://wiki.openstreetmap.org/wiki/Key:reference_point - probably only coincides with club=*
manufacturer // seems to be used like (also undocumented builder=*), probably builder of the building? - probably only coincides with club=*
atv // https://wiki.openstreetmap.org/wiki/Key:atv, mostly used on amenity=parking|car_wash ?
lifeguard // https://wiki.openstreetmap.org/wiki/Key:lifeguard , used with emergency=*
helipad // undocumented; seems to be type of helipad related to https://wiki.openstreetmap.org/wiki/Tag:aeroway=helipad so probably building-related
elevator // https://wiki.openstreetmap.org/wiki/Key:elevator