Skip to content

Commit

Permalink
Cleared history
Browse files Browse the repository at this point in the history
  • Loading branch information
geoBoundaryBot committed Jan 19, 2023
1 parent 930dac8 commit b7dd6a5
Show file tree
Hide file tree
Showing 22,859 changed files with 71,430 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: ['https://giving.wm.edu/give-now/#allocation=4674']
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/boundary-errata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Boundary Errata
about: Create a report to help us improve
title: "[BOUNDARY ERRATA]"
labels: ''
assignees: ''

---

**Describe the Error**
A clear and concise description of what the error is - please provide sources as appropriate.

**Screenshots**
If applicable, add screenshots or images to help explain your problem.

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for geoBoundaries
title: "[FEATURE REQUEST]"
labels: ''
assignees: ''

---

**Is your feature request related to a problem you run into when using geoBoundaries? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!--- Thank you for your submission to geoBoundaries! -->
<!--- If you are submitting a boundary, please make sure to include the ISO code and ADM level -->
<!--- We require full data lineage for all products, but give us your source and we'll do the legwork to hunt down everything we can! -->

## Why do we need this boundary?
<!--- If this is in response to a github issue, just link it here. -->
<!--- Otherwise, let us know why this boundary is better than what's in the current database. -->

## Anything Unusual?
<!--- Please describe any known complications with your submission. -->
<!--- You can also include anything else we need to know while assessing this data. -->
184 changes: 184 additions & 0 deletions .github/workflows/fullBuild_gB_AFG_GRL.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
on:
schedule:
% - cron: "25 5 15 * *"

name: fullBuild_AFG_GRL
jobs:
gbBuild_AFG_AZE:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
ISO: ["AFG","AGO","ALB","AND","ARE","ARG","ARM","ATA","ATG","AUS","AUT","AZE"]
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
steps:
- name: Check if build needed
id: buildCheck
continue-on-error: true
run: |
git clone https://github.com/wmgeolab/geoBoundaryBot
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
- name: Create Build Call
if: steps.buildCheck.outcome == 'success'
uses: aurelien-baudet/[email protected]
with:
workflow: yDISPATCH_gBLayer
repo: wmgeolab/geoBoundaries
token: ${{ secrets.DRTOKEN }}
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s

gbBuild_BDI_BOL:
if: always()
needs: gbBuild_AFG_AZE
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
ISO: ["BDI", "BEL", "BEN", "BFA", "BGD", "BGR", "BHR", "BHS", "BIH", "BLR", "BLZ", "BOL"]
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
steps:
- name: Check if build needed
id: buildCheck
continue-on-error: true
run: |
git clone https://github.com/wmgeolab/geoBoundaryBot
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
- name: Create Build Call
if: steps.buildCheck.outcome == 'success'
uses: aurelien-baudet/[email protected]
with:
workflow: yDISPATCH_gBLayer
repo: wmgeolab/geoBoundaries
token: ${{ secrets.DRTOKEN }}
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s

gbBuild_BRA_CMR:
if: always()
needs: gbBuild_BDI_BOL
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
ISO: ["BRA", "BRB", "BRN", "BTN", "BWA", "CAF", "CAN", "CHE", "CHL", "CHN", "CIV", "CMR"]
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
steps:
- name: Check if build needed
id: buildCheck
continue-on-error: true
run: |
git clone https://github.com/wmgeolab/geoBoundaryBot
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
- name: Create Build Call
if: steps.buildCheck.outcome == 'success'
uses: aurelien-baudet/[email protected]
with:
workflow: yDISPATCH_gBLayer
repo: wmgeolab/geoBoundaries
token: ${{ secrets.DRTOKEN }}
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s

gbBuild_COD_DMA:
if: always()
needs: gbBuild_BRA_CMR
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
ISO: ["COD", "COG", "COL", "COM", "CPV", "CRI", "CUB", "CYP", "CZE", "DEU", "DJI", "DMA"]
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
steps:
- name: Check if build needed
id: buildCheck
continue-on-error: true
run: |
git clone https://github.com/wmgeolab/geoBoundaryBot
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
- name: Create Build Call
if: steps.buildCheck.outcome == 'success'
uses: aurelien-baudet/[email protected]
with:
workflow: yDISPATCH_gBLayer
repo: wmgeolab/geoBoundaries
token: ${{ secrets.DRTOKEN }}
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s

gbBuild_DNK_FRA:
if: always()
needs: gbBuild_COD_DMA
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
ISO: ["DNK", "DOM", "DZA", "ECU", "EGY", "ERI", "ESP", "EST", "ETH", "FIN", "FJI", "FRA"]
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
steps:
- name: Check if build needed
id: buildCheck
continue-on-error: true
run: |
git clone https://github.com/wmgeolab/geoBoundaryBot
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
- name: Create Build Call
if: steps.buildCheck.outcome == 'success'
uses: aurelien-baudet/[email protected]
with:
workflow: yDISPATCH_gBLayer
repo: wmgeolab/geoBoundaries
token: ${{ secrets.DRTOKEN }}
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s

gbBuild_FSM_GRL:
if: always()
needs: gbBuild_DNK_FRA
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
ISO: ["FSM", "GAB", "GBR", "GEO", "GHA", "GIN", "GMB", "GNB", "GNQ", "GRC", "GRD", "GRL"]
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
steps:
- name: Check if build needed
id: buildCheck
continue-on-error: true
run: |
git clone https://github.com/wmgeolab/geoBoundaryBot
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
- name: Create Build Call
if: steps.buildCheck.outcome == 'success'
uses: aurelien-baudet/[email protected]
with:
workflow: yDISPATCH_gBLayer
repo: wmgeolab/geoBoundaries
token: ${{ secrets.DRTOKEN }}
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s

Loading

0 comments on commit b7dd6a5

Please sign in to comment.