We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this issue aspectumapp/osm2geojson#7 we have problem with set of tags
"conveying": "forward", "foot": "yes", "highway": "steps", "incline": "up", "indoor": "yes", "level": "-1", "tunnel": "yes"
As you can see here https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps highway: steps is not polygon.
highway: steps
Also your lib https://github.com/tyrasd/osmtogeojson detects this geometry as Polygon (method _isPolygonFeature), but because of line
_isPolygonFeature
... ways[i].nodes[0].id === ways[i].nodes[ways[i].nodes.length-1].id // ... and forms a closed ring ...
this way produce LineString in result.
What do you think about this situation? Is it possible to add highway: steps to blacklist in this repository?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this issue aspectumapp/osm2geojson#7 we have problem with set of tags
As you can see here https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps
highway: steps
is not polygon.Also your lib https://github.com/tyrasd/osmtogeojson detects this geometry as Polygon (method
_isPolygonFeature
), but because of linethis way produce LineString in result.
What do you think about this situation? Is it possible to add
highway: steps
to blacklist in this repository?The text was updated successfully, but these errors were encountered: