diff options
Diffstat (limited to 'lib/toOSM.js')
-rw-r--r-- | lib/toOSM.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/toOSM.js b/lib/toOSM.js index 3e57c3f..e96568c 100644 --- a/lib/toOSM.js +++ b/lib/toOSM.js @@ -14,6 +14,10 @@ const emptyNames = [ * Transforms a GeoJSON Feature from the Vicmap address schema into OSM schema * * @param {Array} sourceFeature Feature in Vicmap address schema + * @param {Object} [options] + * @param {string} [options.tracing=false] + * @param {string} [options.includeUnitPrefix=false] include addr:unit:prefix to indicate unit type (UNIT, SHOP, SUITE, FLAT, etc.) + * @param {string} [options.includeDerivableProperties=false] include properties addr:suburb, addr:postcode, addr:state which can be derived from existing boundaries on each address object * @returns {Object} Feature in OSM schema */ module.exports = (sourceFeature, options) => { |