Skip to content
New issue

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

Add Public Transport layer #115

Closed
rustprooflabs opened this issue Apr 28, 2021 · 1 comment · Fixed by #140
Closed

Add Public Transport layer #115

rustprooflabs opened this issue Apr 28, 2021 · 1 comment · Fixed by #140
Labels
enhancement New feature or request
Milestone

Comments

@rustprooflabs
Copy link
Owner

Details

Ran into one example while working on #110.

See https://wiki.openstreetmap.org/wiki/Public_transport

@rustprooflabs rustprooflabs added the enhancement New feature or request label Apr 28, 2021
@rustprooflabs rustprooflabs added this to the 0.1.7 milestone Apr 28, 2021
@rustprooflabs
Copy link
Owner Author

This layer is affected by #2. Adding relations for public transport is missing 99% of the relations (101 / 102) that should be added.

SELECT ST_GeometryType(geom), COUNT(*)
    FROM osm.unitable
    WHERE tags->>'public_transport' IS NOT NULL
        AND geom_type = 'R'
    GROUP BY 1
;
st_geometrytype   |count|
------------------+-----+
ST_MultiLineString|  101|
ST_Polygon        |    1|

rustprooflabs added a commit that referenced this issue Jul 10, 2021
…ing Point/Polygon. DC example has no line data, not adding at this time. #115
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant