Usage
OSM file to new
- It removes some attributes of each feature such as:
user
,version
,timestamp
,changeset
anduid
. So, it returns a new OSM file without these attributes.
COMMAND | REQUIRED | DESCRIPTION |
---|---|---|
--input_osm | yes | Path to OSM file to process. |
--output_osm | yes | Path to OSM output. |
Return:
OSM file - The features in the file does not have the user
, version
, timestamp
, changeset
and uid
properties.
Command line:
docker run --rm -v ${PWD}:/mnt/data developmentseed/geokit:python.latest geo \
osm2new \
--input_osm=<INPUT_OSM> \
--output_osm=<OUTPUT_OSM>
Use case:
- Remove the attributes:
user
,version
,timestamp
,changeset
anduid
.