forked from kubilus1/autoortho-scenery
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubilus1#14 from jonaseberle/feat/use-sonny-lidar-dtm
Add Iceland, Faroe and Svalbard/Spitsbergen, use Sonny's LiDAR
- Loading branch information
Showing
12 changed files
with
409 additions
and
605 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Build one tile (and create artifact) | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tile: | ||
type: string | ||
default: '+62-008' | ||
|
||
jobs: | ||
build: | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
TZ: America/NewYork | ||
GH_TOKEN: ${{ github.token }} | ||
|
||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install reqs | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y python3 python3-pip python3-tk zip libgeos-dev | ||
python3 -m pip install -r requirements.txt | ||
make --version | ||
- name: Build | ||
id: build | ||
run: | | ||
timeout 20m make -f Makefile.tiles z_aosingle_${{ inputs.tile }}.zip | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: z_aosingle_${{ inputs.tile }}.zip | ||
path: ./z_aosingle_${{ inputs.tile }}.zip | ||
retention-days: 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Run one | ||
name: Build one .zip (and upload) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,7 @@ | |
*.swp | ||
Ortho4XP | ||
*_tile_list.* | ||
/var/ | ||
/.venv/ | ||
/z_*_*/ | ||
/z_*_*.zip |
Oops, something went wrong.