Skip to content

Instantly share code, notes, and snippets.

View andrashann's full-sized avatar

andrashann

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@andrashann
andrashann / hungary_road_numbers.ipynb
Created February 19, 2022 12:21
Notebook to create a map highlighting the first digit of road numbers in Hungary
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@andrashann
andrashann / hochschwab.ipynb
Created July 28, 2022 18:47
hochschwab hike comparison
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<template>
<div>
<div class="range_container">
<div class="sliders_control">
<input
id="fromSlider"
v-model="fromVal"
type="range"
:min="min"
:max="max"
@andrashann
andrashann / get-osm-country-borders.sh
Created November 4, 2022 18:01
get country borders from planet-latest.osm.pbf openstreetmap export using osmium into a geojson file
# on a Mac: brew install osmium-tool
# get relations with boundary=administrative tag, use -t to throw away unneeded tag info
# (otherwise a bunch of unneeded objects remain)
osmium tags-filter -t -o bound.osm.pbf planet-latest.osm.pbf r/boundary=administrative
# same, but filtering futher for admin_level=2
osmium tags-filter -t -o admin_level_2.osm.pbf bound.osm.pbf r/admin_level=2
#convert to geojson for further processing
osmium export admin_level_2.osm.pbf -o admin_level_2.geojson
@andrashann
andrashann / gpxbuffer.ipynb
Created August 24, 2023 20:43
take a gpx track file and a gpx file with waypoints and keep only the points within a certain buffer of the track
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.