https://github.com/alifeee/river-walks
geojson files mapping river walks
https://github.com/alifeee/river-walks
geojson river-walk rivers
Last synced: 6 months ago
JSON representation
geojson files mapping river walks
- Host: GitHub
- URL: https://github.com/alifeee/river-walks
- Owner: alifeee
- Created: 2025-05-14T16:26:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-14T16:30:49.000Z (about 1 year ago)
- Last Synced: 2025-12-22T11:14:00.099Z (7 months ago)
- Topics: geojson, river-walk, rivers
- Homepage: https://geojson.io/#data=data:text/x-url,https%3A%2F%2Fraw.githubusercontent.com%2Falifeee%2Friver-walks%2Frefs%2Fheads%2Fmain%2Fall-river-walks.geojson
- Size: 792 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# River walks
River walks!
View geojson on a map on

How to get data, from [weeknote 2024/29](https://weeknotes.alifeee.co.uk/2024-29/).
```text
Here is the River Sheaf on Open Street Map (OSM)
It is made up of a series of "ways", which are lines with coordinates, added by normal people.
I used Overpass Turbo () to export a [`geoJSON`](https://geojson.org/) file for the River Sheaf (i.e., with `relation(11890887); out geom;`)
to crop:
sudo apt install gdal-bin
ogr2ogr -clipsrc -1.47927 53.34511 -1.49590 53.35812 export2.geojson export.geojson
```
## combine geojson
```bash
endfile="all-river-walks.geojson"
while read file; do
cat "${file}";
done <<< $(find geojson -type f | sort -n) | jq -c --slurp '{
"type": "FeatureCollection",
"name": "combined",
"features": ([.[] | .features[0]])
}' > "${endfile}"
```