-
-
Notifications
You must be signed in to change notification settings - Fork 113
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
Support Overture Map format #636
Comments
Some initial observations on the dataset: It contains 1.5B elements (compared to 1.2B for OSM if you exclude nodes with no tags) The initial size is 215GB vs. 75GB for OSM Size breakdown by theme and type:
|
I wrote a sample Java driver using these dependencies:
They double the size of the planetiler fat jar file (from 60 to 120MB) 😭 On an r7g.metal instance, it takes ~1m30s to download all of the parquet files to disk, then about 1m30s to read all of the 1.5B geometries out of it. Even though the IDs are 128-bit longs (and some are temp ID strings) - if you FNV1A-hash them to 64 bits, there are no collisions. |
It seems the majority of the space is buildings, are there a lot more buildings than OSM or is the size just the format used? |
there should be many more buildings than OSM, if this is a superset of previous Daylight MSFT building releases. The Parquet format is very efficient at encoding column data but the geometry encoding is simply WKB, which should be less compact than the OSM topological way/node model. So I think it's a combination of both. |
Exactly, currently the buildings theme contains a combination of OSM + Microsoft ML + ESRI Community Maps data, for a total of about 786M buildings globally. |
A couple of other options for reading parquet format:
|
Probably this is stupid so feel free to ignore my comment, but my first thought was let's flatten the nested properties and make a planet.pbf file which looks like OSM... |
@mactrem gave a nice presentation about possible improvements of the Mapbox Vector Tile format in the last MapLibre Technical Steering Committee meeting. There was some discussion about nested properties. Maybe this is a bit far in the future, but worth thinking about... If you are interested in discussions around the tile format, feel free to join the |
I got a little deeper into the low-level parquet format reading this morning. It looks like it should actually work pretty cleanly in planetiler architecture to saturate all cores if I read one row group from a file at a time, then hand it off to a worker to parse and process one element at a time. I tried playing with https://github.com/joelittlejohn/jsonschema2pojo to generate typed classes from the json schema definition in https://github.com/OvertureMaps/schema/tree/main/schema but looks like it can't handle allOf/oneOf. I'll play with it a bit more but might just start with a dynamic API like |
It should be possible but it should definitely use #127 - would be highly inefficient to break out Overture into a topological node/ways/relations just to re-assemble them again. |
Alright, got a first pass (highly experimental!) overture reader up and running. Planetiler can download and build a planet.pmtiles for the planet on an r7g ec2 instance in about 15 minutes, compared to 20+ for an OSM planet pbf. The output is around 50GB. Here's a demo: https://msbarry.github.io/planetiler-overture-demo/#14/42.35647/-71.07003 The structured attributes definitely present a challenge mapping to vector tile key/value pairs, mostly on road segment layer. Take a look at the road "segment" attributes, I just left them JSON for now but I'll need to do something to split up road lines and apply tags conditionally for different segments with attributes like |
Congratulations @msbarry, this is amazing! |
Very cool @msbarry Looking at it, it doesn't seem like it would be hard to style those values with a case syntax. similar to the ugly way I did the icons in my recent trail map, like What does that "at" location mean? does the line start at that point or is it longer and telling you at a certain point it changes to a different style? I wonder how this looks side by side with a map made from OSM sources. it seems like OSM is the source for a lot of this anyway. |
The at field means that the attribute only applies for a certain segment of the line, so at: [0, 0.5] means it applies for the first half. This is one of the biggest mismatches between overture format and planetiler processing/vector tiles in general. So to "have support for overture" in planetiler probably means it is able to:
I'd say understanding the current overture schema could be out of scope for now, since it will evolve and we people should be able to use new attributes without being blocked on a planetiler update. What do people think? |
OK I got a prototype profile with those working (see code and demo) I think it's easiest to work with the structured schema with a dynamic API, so you can do things like: feature.setAttr("categories.main", struct.get("categories").get("main").asString()) or handle all of the different ways that partial-length road data is provided (some embed an For actually handling the partial-length values I came up with an API var rangeMap = new RangeMapMap();
rangeMap.put(0, 0.25, Map.of("key", "value");
rangeMap.put(0.25, 1.0, Map.of("key", "other value");
var lineSplitter = new LineSplitter(lineString);
for (var range : tags.result()) { // merges overlapping tag maps
var splitLine = lineSplitter.get(range.start(), range.end());
features.geometry(sourceFeature.getSourceLayer(), splitLine)
.putAttrs(range.value());
} but I could probably simplify it to something like: features.line(sourceFeature.getSourceLayer())
.setAttrPartialLength(0, 0.25, "key", "value")
.setAttrPartialLength(0.25, 1.0, "key", "other value")
.putAttrsPartialLength(0, 0.5, names) then have planetiler handle creating multiple line geometries behind the scenes. |
If I wanted to try the code at https://github.com/onthegomap/planetiler/tree/overture-generic , how would I use this new profile after compiling planetiler? can it only be used with pmtiles or are mbtiles still possible? |
should be sufficient. It will download by default, but you can set |
Also, I'm not sure if we should add full overture support to planetiler while they are still only doing alpha releases if the format might change in the future (for example something besides avro-parquet). So maybe we should split this out into separate independent issues for the generic lower-level capabilities that planetiler needs to work with overture-like data:
Then we could have an example profile that used these to read one of the alpha releases but it's mostly up to consumers if/how they want to use it? Most likely I think people would want to pick individual themes from an overture release to layer-into another map profile. |
Added initial geoparquet support in #888. There's a still some rough edges and I'm planning to improve support for structured attributes, automatic downloading, linear-referenced tags, exposing row/column filters, and geoarrow improvements - but it's at least possible to use overture data now. |
Just a quick note that we're moving forward with fixing the " |
@msbarry I'm curious about the relative performance of tiling GeoParquet versus OSM. I saw further up you mentioned 15 minutes for GeoParquet versus 20+ for OSM. Is the difference that small, or is it partly influenced by data size, e.g. Overture has roughly 4X the buildings? |
It's a little hard to isolate since the volume of data in OSM vs. overture is different, and there's no profile that works with both overture and OSM data yet. I tested with a noop profile that just does a full scan through latest OSM pbf and 5/16 overture release on a 32-core machine I've been using to test and they each took around 10-11 minutes - although Overture has about 3x as many features (3.4B vs. 1.2B for OSM excluding nodes without tags). OSM pbf has to do 2 full scans, storing node locations on the first pass and using them to construct geometries on the second pass - it also needs 64gb of ram to cache node location lookups in the second pass. Overture provides fully-formed geometries so the reader can get by with only 2-3gb or ram. That's just for a full scan though - if you specify a bounding box then planetiler skips parquet files where the geoparquet bbox metadata field doesn't intersect, and converts the bbox to a push-down predicated that let it read all of Boston or Massachusetts in 5-10 seconds. I think people will most likely grab only the themes/types they need for their profile so the amount of data processed should be smaller. And when I add support for column filters that should help too. |
Here's a rough breakdown of the 10-11 minutes to do a full scan through overture:
The time spent just reading overture data will likely be in the noise compared with time spent processing geometries/emitting tiles (same for osm data though). |
@msbarry - first off these updates are incredible - thanks for taking the time to put these together. Also - those performance metrics seem incredibly fast across the board. For a whole globe of data, those render times are so fast! Do you have a target you're shooting for? Does your use case require such rapid iteration? I'm curious more so than anything. Thanks again, looking forward to playing with it. |
Thanks! Just to clarify that's not for rendering anything, it's just the fixed cost to read overture data. Rendering a complex profile from it could still take hours depending on how much data/post processing you include. Since spatial queries appear to be so fast I think an interesting possibility this opens up could be to expose a web server that renders tiles on the fly/hot reloads when the profile definition changes. But when you're done you'd still run in batch mode to generate all the tiles. |
The 0.8.0 release adds geoparquet/overture support. See https://github.com/onthegomap/planetiler-examples for an examples and instructions getting started. |
This is great! Are you planning on updating this profile as well? Or is the plan to remove it and leave the profile details as an exercise to the reader? |
That's a good question, my understanding is that overture maps foundation plans to provide x-ray view vector tiles for each release on their end, so the "see what overture data looks like" use case will be covered. A more full-featured overture profile would mostly be so that people could actually build maps based on overture data. I'm not sure if people would want that as a brand new schema closely matching overture raw data, or as an adapter that maps the data to an existing schema like shortbread or openmaptiles - or if that would make sense embedded in planetiler, planetiler-examples, or as a standalone repo. |
I didn't know they were planning on providing tiles. Meanwhile, maybe it would make sense to add the remaining data sets (admin and places) to the examples repo? |
Just a quick note that the admins theme was replaced with the divisions theme a few months back. I expect the admins will be formally dropped in the July data release. |
Here's example profiles for Buildings, Transportation and Base that will be migrated into Overture examples : https://github.com/bdon/overture-tiles/tree/main/scripts/2024-05-16-beta.0 |
Hi, I’m looking for guidance on how to handle both OSM vector tiles and OvertureMaps Parquet files. Can someone help me with the best approach? |
Which data from Overture would you like to use @zachtrong? I know that @msbarry has combined OSM data for all layers of OpenMapTiles except for the buildings layer, where he used Overture data instead... |
Yes, I was curious about merging OSM data with Overturemaps Buildings. Seems like inheriting OpenMapTiles profile with a custom Building handler is the approach here. |
Yep that's what I did for onthegomap. We could update the openmaptiles profile to support an |
There's nothing that says Overture and OSM data have to be in the same tile archive. We're using protomaps to generate a pmtiles archive for OSM data, and then we are generating another archive for Overture buildings and places using a separate (and pretty simple) planetiler profile. |
I am also using overture buildings from the planetiler example profile at I made them similar to this the Landcover example at
It ends up with a tiles like this I added this to my style , which is a little hacky with height of the buildings. I found 'height' wasn't consistently on all buildings, so some I used 'numFloors' multipled by 3 if that existed instead.
|
Although I'm not sure what I used is always great, for example, the Eiffel Tower.. |
The first Overture Map release using the new format is out: https://overturemaps.org/download/overture-july-alpha-release-notes/ and there are quite a few differences from OpenStreetMap data formats that planetiler currently supports:
geometry
column.This presents some challenges (like writing new profiles, adding support for parquet sources) but also some opportunities:
What do people think the ideal workflow would be to use Overture maps data from Planetiler?
The text was updated successfully, but these errors were encountered: