-
Notifications
You must be signed in to change notification settings - Fork 74
v0.2.52..v0.2.53 changeset UFD_to_OSM.js
Garret Voltz edited this page Feb 12, 2020
·
1 revision
diff --git a/translations/UFD_to_OSM.js b/translations/UFD_to_OSM.js
index 4134e4b..20a3837 100644
--- a/translations/UFD_to_OSM.js
+++ b/translations/UFD_to_OSM.js
@@ -3371,6 +3371,9 @@ ufd = {
}
}
+ // HWT=22 appears in some data and means "Not Applicable"
+ if (attrs.HWT == '22') delete attrs.HWT;
+
}, // End of applyToOsmPreProcessing
applyToOsmPostProcessing : function (attrs, tags, layerName, geometryType)
@@ -3670,7 +3673,6 @@ function initialize()
// Debug:
// translate.dumpOne2OneLookup(ufd.lookup);
}
-
}