-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsc_to_keep.txt
71 lines (64 loc) · 3.97 KB
/
sc_to_keep.txt
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
private val KEYS_THAT_SHOULD_NOT_BE_REMOVED_WHEN_PLACE_IS_REPLACED = listOf(
// 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]?(:.*)?", "source_ref", "Source", "survey", "attribution",
"import",
"landuse", "residential", "historic(:.*)?", "heritage(:.*)?", "OnroerendErfgoed:criteria",
"lda:criteria", "nrhp:criteria", "nrhp:inscription_date",
"building(:.*)?", "building_type", "house", "man_made", "roof:.*", "windows",
"architect(:.*)?", "engineer(:.*)?", "year_of_construction", "construction_date", "covered",
"design:code:SPb", "design:ref", "pmfsefin:idedif", "uuid:building", "IPP:(CodLote|CodQuadra)",
"atmotorway",
"addr[1-9]?:.*", "old_addr[1-9]?:.*", "is_in(:.*)?", "address", "nohousenumber", "noaddress",
"not:addr:postcode", "postal_code", "place", "city", "country", "county", "district",
"sub_district",
"us.fo:[Aa]dressutal",
"quartier", "Commune", "City", "street", "sector", "region", "locality", "province", "taluk",
"LOCALIDAD", "LGA",
"location", "location-Accuracy", "location-Altitude", "level(:.*)?", "levels", "indoor(:.*)?",
"room",
"landmark", "layer", "ele", "height", "altitude", "author", "authorization", "area",
"min_height", "floor:material",
"FIXME", "fixme", "note(:.*)?", "fixme:type",
"ref:.*",
"type",
"caravans", "tents", "shower", "buildingpart", "door", "barrier", "wall", "fence_type",
// fuel stations and craft=boatbuilder (which we do not target)
"guid:belorusneft", "fuel:.*", "compressed_air", "hgv:lanes", "car_wash", "vacuum_cleaner",
"seamark:.*", "waterway", "ruins",
"not:name",
"lbcs:.*", "chicago:building_id", "arivac:.*", "lacounty:.*", "nysgissam:.*", "at_bev:.*",
"castle_type", "nycdoitt:bin", "fid", "wikimedia_commons", "mapillary", "panoramax", "image",
"image:.*", "size", "industrial", "project:opencities_abidjan", "highway", "utahagrc:parcelid",
"WroclawGIS:building:ID", "mhs:.*", "sangis:.*", "listed_status", "divipola", "entrance:ramp",
"landcover", "massgis:.*",
"maxspeed", "lanes", "oneway", "surface", "inscription", "construction",
"year", "lastcheck", "last_check", "date", "start_date", "survey(:name|:date|_date)",
"source_date", "source_type_(survey|imagery|GPS|walking_paper)",
"addr.source:(housenumber|street)",
"STATE",
"KSJ2:.*", "kvl_hro:type", "b5m:.*", "it:fvg:ctrn:.*", "dcgis:.*", "dataset",
"project:eurosha_2012", "cosmha", "lojic:bgnum", "maaamet:ETAK", "osm_id", "project",
"project:pdevii", "usar_addr:edit_date", "bmo:type", "osm_type", "previously",
"comoros-dgsc:code", "full_id", "GNS:.*", "HE_ref", "id:uuid", "IOM:project", "wb_pb:id",
"project:.*",
"entrance",
"waste:disposal", "water_tank:quantity", "water_supply", "water_source:id", "drinking_water",
"lit", "foot", "substation",
"buildings:floor", "building_status", "elevation", "fire_operator", "fire_rank", "flood_prone",
"M:hazard_prone", "water_source",
"wikidata", "wikipedia(:.*)?", "name_disaster", "loc_ref", "loading_dock", "access",
"access:roof", "condition", "cellar_door", "cellar:use", "natural", "parking", "Observation",
"antenna:type", "bench", "floating", "ft_link", "garden:type", "motorboat",
"protect(ed|_class)", "protection_title", "reference_point", "manufacturer", "atv",
"lifeguard", "helipad", "elevator", "electricity", "power(_supply|_source)?", "generator:.*",
"backup_generator",
"shelter_type", "disaster:shelter_type", "camp", "end_date",
"no", "car;car_repair", "car_repair;car", "nature_of_facility",
"branch_brand", "real_fire-GB-IE", "sport:sport_pub", "sport_pub", "sport:sport_ice",
"drinking_water_available",
"LINZ2OSM:.*", "linz2osm:.*",
"us.fo:[Pp]ostnr", "us.fo:[Vv]eganr",
"lat", "latitude", "lon", "longitude",
)
.flatMap { listOf(it, "source:$it", "check_date:$it") }
.map { it.toRegex() }