Skip to content

Commit b7dd6a5

Browse files
Cleared history
1 parent 930dac8 commit b7dd6a5

File tree

22,859 files changed

+71430
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

22,859 files changed

+71430
-0
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: ['https://giving.wm.edu/give-now/#allocation=4674']
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Boundary Errata
3+
about: Create a report to help us improve
4+
title: "[BOUNDARY ERRATA]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the Error**
11+
A clear and concise description of what the error is - please provide sources as appropriate.
12+
13+
**Screenshots**
14+
If applicable, add screenshots or images to help explain your problem.
15+
16+
**Additional context**
17+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for geoBoundaries
4+
title: "[FEATURE REQUEST]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem you run into when using geoBoundaries? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!--- Thank you for your submission to geoBoundaries! -->
2+
<!--- If you are submitting a boundary, please make sure to include the ISO code and ADM level -->
3+
<!--- 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! -->
4+
5+
## Why do we need this boundary?
6+
<!--- If this is in response to a github issue, just link it here. -->
7+
<!--- Otherwise, let us know why this boundary is better than what's in the current database. -->
8+
9+
## Anything Unusual?
10+
<!--- Please describe any known complications with your submission. -->
11+
<!--- You can also include anything else we need to know while assessing this data. -->
Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
on:
2+
schedule:
3+
% - cron: "25 5 15 * *"
4+
5+
name: fullBuild_AFG_GRL
6+
jobs:
7+
gbBuild_AFG_AZE:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
max-parallel: 1
12+
matrix:
13+
ISO: ["AFG","AGO","ALB","AND","ARE","ARG","ARM","ATA","ATG","AUS","AUT","AZE"]
14+
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
15+
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
16+
steps:
17+
- name: Check if build needed
18+
id: buildCheck
19+
continue-on-error: true
20+
run: |
21+
git clone https://github.com/wmgeolab/geoBoundaryBot
22+
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
23+
24+
- name: Create Build Call
25+
if: steps.buildCheck.outcome == 'success'
26+
uses: aurelien-baudet/[email protected]
27+
with:
28+
workflow: yDISPATCH_gBLayer
29+
repo: wmgeolab/geoBoundaries
30+
token: ${{ secrets.DRTOKEN }}
31+
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
32+
wait-for-completion-timeout: 10m
33+
wait-for-completion-interval: 20s
34+
35+
gbBuild_BDI_BOL:
36+
if: always()
37+
needs: gbBuild_AFG_AZE
38+
runs-on: ubuntu-latest
39+
strategy:
40+
max-parallel: 1
41+
fail-fast: false
42+
matrix:
43+
ISO: ["BDI", "BEL", "BEN", "BFA", "BGD", "BGR", "BHR", "BHS", "BIH", "BLR", "BLZ", "BOL"]
44+
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
45+
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
46+
steps:
47+
- name: Check if build needed
48+
id: buildCheck
49+
continue-on-error: true
50+
run: |
51+
git clone https://github.com/wmgeolab/geoBoundaryBot
52+
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
53+
54+
- name: Create Build Call
55+
if: steps.buildCheck.outcome == 'success'
56+
uses: aurelien-baudet/[email protected]
57+
with:
58+
workflow: yDISPATCH_gBLayer
59+
repo: wmgeolab/geoBoundaries
60+
token: ${{ secrets.DRTOKEN }}
61+
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
62+
wait-for-completion-timeout: 10m
63+
wait-for-completion-interval: 20s
64+
65+
gbBuild_BRA_CMR:
66+
if: always()
67+
needs: gbBuild_BDI_BOL
68+
runs-on: ubuntu-latest
69+
strategy:
70+
max-parallel: 1
71+
fail-fast: false
72+
matrix:
73+
ISO: ["BRA", "BRB", "BRN", "BTN", "BWA", "CAF", "CAN", "CHE", "CHL", "CHN", "CIV", "CMR"]
74+
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
75+
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
76+
steps:
77+
- name: Check if build needed
78+
id: buildCheck
79+
continue-on-error: true
80+
run: |
81+
git clone https://github.com/wmgeolab/geoBoundaryBot
82+
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
83+
84+
- name: Create Build Call
85+
if: steps.buildCheck.outcome == 'success'
86+
uses: aurelien-baudet/[email protected]
87+
with:
88+
workflow: yDISPATCH_gBLayer
89+
repo: wmgeolab/geoBoundaries
90+
token: ${{ secrets.DRTOKEN }}
91+
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
92+
wait-for-completion-timeout: 10m
93+
wait-for-completion-interval: 20s
94+
95+
gbBuild_COD_DMA:
96+
if: always()
97+
needs: gbBuild_BRA_CMR
98+
runs-on: ubuntu-latest
99+
strategy:
100+
max-parallel: 1
101+
fail-fast: false
102+
matrix:
103+
ISO: ["COD", "COG", "COL", "COM", "CPV", "CRI", "CUB", "CYP", "CZE", "DEU", "DJI", "DMA"]
104+
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
105+
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
106+
steps:
107+
- name: Check if build needed
108+
id: buildCheck
109+
continue-on-error: true
110+
run: |
111+
git clone https://github.com/wmgeolab/geoBoundaryBot
112+
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
113+
114+
- name: Create Build Call
115+
if: steps.buildCheck.outcome == 'success'
116+
uses: aurelien-baudet/[email protected]
117+
with:
118+
workflow: yDISPATCH_gBLayer
119+
repo: wmgeolab/geoBoundaries
120+
token: ${{ secrets.DRTOKEN }}
121+
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
122+
wait-for-completion-timeout: 10m
123+
wait-for-completion-interval: 20s
124+
125+
gbBuild_DNK_FRA:
126+
if: always()
127+
needs: gbBuild_COD_DMA
128+
runs-on: ubuntu-latest
129+
strategy:
130+
max-parallel: 1
131+
fail-fast: false
132+
matrix:
133+
ISO: ["DNK", "DOM", "DZA", "ECU", "EGY", "ERI", "ESP", "EST", "ETH", "FIN", "FJI", "FRA"]
134+
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
135+
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
136+
steps:
137+
- name: Check if build needed
138+
id: buildCheck
139+
continue-on-error: true
140+
run: |
141+
git clone https://github.com/wmgeolab/geoBoundaryBot
142+
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
143+
144+
- name: Create Build Call
145+
if: steps.buildCheck.outcome == 'success'
146+
uses: aurelien-baudet/[email protected]
147+
with:
148+
workflow: yDISPATCH_gBLayer
149+
repo: wmgeolab/geoBoundaries
150+
token: ${{ secrets.DRTOKEN }}
151+
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
152+
wait-for-completion-timeout: 10m
153+
wait-for-completion-interval: 20s
154+
155+
gbBuild_FSM_GRL:
156+
if: always()
157+
needs: gbBuild_DNK_FRA
158+
runs-on: ubuntu-latest
159+
strategy:
160+
max-parallel: 1
161+
fail-fast: false
162+
matrix:
163+
ISO: ["FSM", "GAB", "GBR", "GEO", "GHA", "GIN", "GMB", "GNB", "GNQ", "GRC", "GRD", "GRL"]
164+
ADM: ["ADM0", "ADM1", "ADM2", "ADM3", "ADM4", "ADM5"]
165+
TYPE: ["gbOpen", "gbAuthoritative", "gbHumanitarian"]
166+
steps:
167+
- name: Check if build needed
168+
id: buildCheck
169+
continue-on-error: true
170+
run: |
171+
git clone https://github.com/wmgeolab/geoBoundaryBot
172+
python geoBoundaryBot/gbBuildCheck.py ${{secrets.DRTOKEN}} ${{matrix.ISO}} ${{matrix.ADM}} ${{matrix.TYPE}}
173+
174+
- name: Create Build Call
175+
if: steps.buildCheck.outcome == 'success'
176+
uses: aurelien-baudet/[email protected]
177+
with:
178+
workflow: yDISPATCH_gBLayer
179+
repo: wmgeolab/geoBoundaries
180+
token: ${{ secrets.DRTOKEN }}
181+
inputs: '{ "bType": "${{matrix.TYPE}}", "ISO": "${{matrix.ISO}}", "ADM":"${{matrix.ADM}}"}'
182+
wait-for-completion-timeout: 10m
183+
wait-for-completion-interval: 20s
184+

0 commit comments

Comments
 (0)