Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
|
e2f9679c22 | ||
|
172f7eafdb | ||
|
eb2a556276 |
1 changed files with 9 additions and 3 deletions
|
@ -12,16 +12,22 @@ jobs:
|
||||||
- name: Download OSM data
|
- name: Download OSM data
|
||||||
run: curl -o luxembourg-latest.osm.pbf https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf
|
run: curl -o luxembourg-latest.osm.pbf https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf
|
||||||
|
|
||||||
|
- name: Convert OSM data to .osm
|
||||||
|
run: |
|
||||||
|
apt update && \
|
||||||
|
apt install -y osmctools && \
|
||||||
|
osmconvert luxembourg-latest.osm.pbf -o=luxembourg-latest.osm
|
||||||
|
|
||||||
- name: Run Shape Generation
|
- name: Run Shape Generation
|
||||||
uses: gtfs-actions/generate-shapes@v1
|
uses: gtfs-actions/generate-shapes@main
|
||||||
with:
|
with:
|
||||||
gtfs_file: sample-feed.zip
|
gtfs_file: sample-feed.zip
|
||||||
osm_file: luxembourg-latest.osm.pbf
|
osm_file: luxembourg-latest.osm
|
||||||
mot: bus
|
mot: bus
|
||||||
output_file: modified-feed.zip
|
output_file: modified-feed.zip
|
||||||
|
|
||||||
- name: Upload modified feed
|
- name: Upload modified feed
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: modified-feed
|
name: modified-feed
|
||||||
path: modified-feed.zip
|
path: modified-feed.zip
|
Loading…
Reference in a new issue