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
It would be great to have some stats like:
Best place to start is likely extracting the OpenSkiMap OSM sources information.
The text was updated successfully, but these errors were encountered:
Here are some example run/ski area sources (code below):
It would be great to get the history of changesets for each way and relation containing:
import polars as pl from openskistats.analyze import load_runs_pl, load_ski_areas_pl import random run_sources = ( load_runs_pl() .explode("run_sources") .select( "run_id", "run_name", "ski_area_ids", pl.col("run_sources").alias("run_source"), ) .collect() ) ski_area_sources = ( load_ski_areas_pl() .explode("ski_area_sources") .select( "ski_area_id", "ski_area_name", pl.col("ski_area_sources").alias("ski_area_source"), ) .filter(pl.col("ski_area_source").str.starts_with("https://www.openstreetmap.org")) ) osm_sources = sorted(set(ski_area_sources["ski_area_source"]) | set(run_sources["run_source"])) for x in sorted(random.Random(4).sample(osm_sources, 10)): print(f"- {x}")
Sorry, something went wrong.
Noting that there are potentially two ways to approach this:
api.openstreetmap.org
history-latest.osm.pbf
osmium
No branches or pull requests
It would be great to have some stats like:
Best place to start is likely extracting the OpenSkiMap OSM sources information.
The text was updated successfully, but these errors were encountered: