osm icon indicating copy to clipboard operation
osm copied to clipboard

General purpose library for reading, writing and working with OpenStreetMap data

Results 6 osm issues
Sort by recently updated
recently updated
newest added

Is there a specific reason to have in osmpbf part of the project n output chanels and feeding them in order to a serializer chanel ? ([decode.go function line number...

# Description This PR adds a PBF [Encoder](https://github.com/nextmv-io/osm/blob/af1fec1a55b1e303f94aec27164b15100dde4d16/osmpbf/encode.go#L17-L20). It is inspired by `OsmSharp`'s [encoder](https://github.com/OsmSharp/core/blob/develop/src/OsmSharp/IO/PBF/Encoder.cs). Most likely this code can be simplified and made more `go` idiomatic. The `Encoder` has a...

It'd be great to be able to write back into `osm.pbf` - this is mainly to be able edit data, filter data or simply create diffs between two `osm.pbf` files....

## Description When retrieving data for ways using the osmpbf package, the Way.Nodes array only contains node IDs, with all other fields such as Version, ChangesetID, Lat, and Lon being...

github.com/datadog/czlib should become github.com/DataDog/czlib. Also the orb dependency could be updated

The OSM standard (XML) format is described here: https://wiki.openstreetmap.org/wiki/OSM_XML Example (OSM standard): ``` ``` The Golang standard XML encoder (xml.MarshalIndent(osmWay, " ", " ") leads to this: ``` ``` Some...