Open dabreegster opened 2 years ago
Thanks Dustin, this concept sounds good in general and osm2lanes looks great!
Here are a few ideas for how this could work on the 3dstreet side:
There is an existing component called streetmix-loader
which takes a streetmix URL and then retrieves the streetmix API response and finds just the "segments" part of the JSON response and feeds just that json into the street
component.
Similarly we could create a component such as osm-way-loader
which could take a way ID (if there is such a thing) and then use overpass > osm2lanes > json output which is fed into street
component.
A separate UI exercise is then helping the user find a way ID using the slippy map method.
It would be least effort for 3dstreet team for v1 of osm2lanes to fit exactly the existing streetmix json format including its use of imperial units. (FYI the street
component has "type" parameter of default value of "streetmixSegmentsFeet". It is useless, it doesn't actually do anything at the moment, but it's meant to call attention to dependency on Streetmix json format and imperial units.) In the future we could use different values for this parameter to trigger alternate parsing logic to experiment with different schema.
To state the obvious v1 would also only support a straight line, a way with 2 nodes, but could be a great forcing function to support ways with >2 nodes.
for way_id localisation:
osm2lanes needs a bit of extra context, like are we in a right-handed or left-handed driving area
I think it is possible to create an overpass query that could get https://wiki.openstreetmap.org/wiki/Key:driving_side and https://wiki.openstreetmap.org/wiki/Key:ISO3166-2 from any enclosing relations. That was at least how I was planning to do it.
@dabreegster I would love to start experimenting with the js interface for osm2lanes, but I'm not sure how to get started. Are there any docs or examples that you can point me to? The web example on the repo appears to be in rust and somehow rendered to the web, so I can't quite understand how vanilla html / js would call functions, which functions those are, parameters, etc.
There will be fast hacky solutions, but I think in the long term we will want to publish to npm: https://www.npmjs.com/package/wasm-pack. Will that work for you?
The problem is we currently bundle everything to WASM directly for the demo site, with no API...
On Sat, 5 Feb 2022, 05:35 Kieran Farr, @.***> wrote:
@dabreegster https://github.com/dabreegster I would love to start experimenting with the js interface for osm2lanes, but I'm not sure how to get started. Are there any docs or examples that you can point me to? The web example on the repo appears to be in rust and somehow rendered to the web, so I can't quite understand how vanilla html / js would call functions, which functions those are, parameters, etc.
— Reply to this email directly, view it on GitHub https://github.com/3DStreet/3dstreet/issues/138#issuecomment-1030523013, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACEL2ZYZJF5XZKZQ7FMWGEDUZSSIZANCNFSM5M7G5QSA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you were mentioned.Message ID: @.***>
@kfarr https://github.com/a-b-street/osm2lanes/pull/60
I am not a web developer, but this should give you a function to convert tags to lanes as a package...? If it looks OK to you i'll try publishing it for you try out :)
Hi @droogmic thank you for doing this. Unfortunately, I'm not sure how to evaluate the rust codebase to see what the JavaScript interface would be. Any pointers on how to use this to build a js version and/or how to interface with that from the browser?
Let me see if I can do the build steps and just give you a Dropbox folder with all the generated bindings... (it might have to wait to tomorrow)
https://www.dropbox.com/s/kcday4ace1mjukt/osm2lanes_npm.zip?dl=0 is the result of doing wasm-pack build --release
. Example of use is https://github.com/zonebuilders/zonebuilder-rust/blob/a3070b9332227f9ebc074c6879448d050ea99887/web/index.html#L40
I think you have to import init
and tags_to_lanes_tmp
from osm2lanes_npm.js
and also await init()
. Reasonable that we first get you a minimal HTML + JS example...
So I assume I was right that an NPM package is the right interface? osm2lanes would then be appended to: https://github.com/3DStreet/3dstreet/blob/main/package.json#L63 ?
Reasonable that we first get you a minimal HTML + JS example...
I agree, I will keep going with https://github.com/a-b-street/osm2lanes/pull/60 to get an example as well.
Quick update: we are doing roadmap planning for 3DStreet and I'm happy to say this is on the roadmap, but it may be a few weeks (or months, sorry) before we get to this item.
It's been a while, here are some updates:
@kfarr and I chatted a bit about this. Here's an end-user workflow:
1) Someone wants to visualize the current lane configuration of any street in the world 2) Through the 3dst UI, they select some import tool 3) They use a slippy web map to find and select a single road 4) In a few seconds, they see that street loaded in 3dst
Here's an idea how this could work:
1) Leaflet, MapboxGL, or similar could be used to let users pick a road. They should all have some kind of on-click handler for single points 2) We can query all OpenStreetMap ways within a small buffer around that point using the Overpass API and extract just the string key/values of a single way 3) Plug that into osm2lanes (which can be called through Javascript), which will return this JSON lane specification 4) Transform osm2lanes JSON into 3dst's format
One prerequisite: publish an npm package of osm2lanes. (Which forces us to start thinking about versioning at least a little bit -- we can create a 0.1, make a bunch of breaking changes, and sync again after the dust settles to update any code in 3dstreet)
Possible complication: the osm2lanes and 3dstreet / streetmix lane spec are different in ways that're hard to reconcile. I don't expect that's the case, but if we discover any gaps, better to learn that early!
Other slight challenge: osm2lanes needs a bit of extra context, like are we in a right-handed or left-handed driving area. That's less straightforward to get from OpenStreetMap, but there's a mapping from country codes to this kind of config somewhere in the Streetcomplete codebase -- I can dig up a link if needed. And getting the country code from a lat/lon should be a solveable problem.
Future idea: import into streetmix
Originally I wanted to wire up something like this into Streetmix, so people could start editing based on current OSM lane config. But Streetmix doesn't support a way of creating a new document and passing in the Streetmix-format JSON segments. I dunno the plans for 3D Street editing, but it should be able to tie in somehow.
Future idea: import road and intersection geometry too
I'll also soon be splitting out A/B Street's road and intersection geometry into a standalone library, which'll also be callable through Javascript. You'd pass in line-strings and widths for a bunch of road segments, and it would generate a 2D road polygon and intersection polygon based on that. The intersection geometry is often imperfect, but pretty decent.
The idea here would be to instead let people select an entire area on the slippy map, and import all of that into 3D Street. Extract the road points from Overpass too. And to get widths of each road,
osm2lanes
will soon also include an estimate of lane widths, which we can add up.CC @droogmic for all of this, who's driving osm2lanes development currently