diff --git a/translations/etds71_osm.js b/translations/etds71_osm.js index f173eef7e2..af88bbab13 100644 --- a/translations/etds71_osm.js +++ b/translations/etds71_osm.js @@ -109,7 +109,7 @@ etds71_osm = { // Translate the single values from "English" to TDS for (var val in attrs) { - if (val in etds70_osm_rules.singleValues) + if (val in etds71_osm_rules.singleValues) { nAttrs[etds71_osm_rules.singleValues[val]] = attrs[val]; // Debug diff --git a/translations/ggdm30_rules.js b/translations/ggdm30_rules.js index 1825f29530..21736e4fdc 100644 --- a/translations/ggdm30_rules.js +++ b/translations/ggdm30_rules.js @@ -59,6 +59,7 @@ ggdm30.rules = { ['F_CODE','AK120','leisure','playground'], // Park ['F_CODE','AK170','amenity','swimming_pool'], // Pool ['F_CODE','AL013','man_made','depot'], + ['F_CODE','AL010','facility','processing'], // From MGCP - Map to Facility ['F_CODE','AL020','landuse','industrial'], // From OSM - Map to BUA ['F_CODE','AL020','landuse','residential'], // From OSM - Map to BUA ['F_CODE','AL024','place','neighborhood'], // Neighbourhood - US spelling diff --git a/translations/mgcp.js b/translations/mgcp.js index 7d18db99f7..0692364dc6 100644 --- a/translations/mgcp.js +++ b/translations/mgcp.js @@ -1134,7 +1134,7 @@ mgcp = { if (tags.facility == 'processing') { if (! tags.product) tags.product = 'unknown'; - tags.facility = 'yes'; + // tags.facility = 'yes'; } // Sort out the WID, WD1 etc attributes diff --git a/translations/tds61_rules.js b/translations/tds61_rules.js index c69b3d2b47..ab70f62210 100644 --- a/translations/tds61_rules.js +++ b/translations/tds61_rules.js @@ -56,6 +56,7 @@ tds61.rules = { ['F_CODE','AK120','leisure','playground'], // Park ['F_CODE','AK170','amenity','swimming_pool'], // Pool ['F_CODE','AL013','man_made','depot'], + ['F_CODE','AL010','facility','processing'], // From MGCP - Map to Facility ['F_CODE','AL020','landuse','industrial'], // From OSM - Map to BUA ['F_CODE','AL020','landuse','residential'], // From OSM - Map to BUA ['F_CODE','AL030','amenity','grave_yard'], // From OSM Data diff --git a/translations/tds71_rules.js b/translations/tds71_rules.js index b845a314a0..c35d63ae22 100644 --- a/translations/tds71_rules.js +++ b/translations/tds71_rules.js @@ -92,6 +92,7 @@ tds71.rules = { ['F_CODE','AK120','leisure','nature_reserve'], // Park ['F_CODE','AK120','leisure','playground'], // Park ['F_CODE','AK170','amenity','swimming_pool'], // Pool + ['F_CODE','AL010','facility','processing'], // From MGCP - Map to Facility ['F_CODE','AL020','landuse','commercial'], // From OSM - Map to BUA ['F_CODE','AL020','landuse','industrial'], // From OSM - Map to BUA ['F_CODE','AL020','landuse','residential'], // From OSM - Map to BUA