Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klaus-tockloth/osmpp
'osmpp' (OSM preprocessing) is a tool to preprocess OSM data.
https://github.com/klaus-tockloth/osmpp
Last synced: 11 days ago
JSON representation
'osmpp' (OSM preprocessing) is a tool to preprocess OSM data.
- Host: GitHub
- URL: https://github.com/klaus-tockloth/osmpp
- Owner: Klaus-Tockloth
- License: mit
- Created: 2019-11-23T10:03:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-05T15:14:01.000Z (over 4 years ago)
- Last Synced: 2024-06-21T14:39:56.765Z (6 months ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# osmpp
## Purpose
'osmpp' (OSM preprocessing) is a tool to pre-process OSM data. It's typically used within an OSM data processing tool chain.
## Remarks
The master branch is used for program development and may be unstable. See 'Releases' for pre-build binaries.
## Build (master)
go get -u github.com/Klaus-Tockloth/osmpp
make
## Functionality
Processes node_network objects.
Processes turning_circle/loop objects.
## Usage
```txt
Program:
Name : main
Release : v0.2.0 - 2020/09/05
Purpose : OSM data pre-processing
Info : Processes node_network and turning_circle objects.Usage:
main -inputOSM=filename -outputNodes=filename -startNode=numberExample:
main -inputOSM=osmdata.pbf -outputNodes=osmpp.xml -startNode=1000000000000Options:
-inputOSM string
name of OSM input file (PBF format)
-outputNodes string
name of OSM nodes output file (XML format)
-startNode int
starting ID for new nodes written to nodes output file
```