mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
* starting tribal pr * further pipeline work * bia merge working * alaska villages and tribal geo generate * tribal folders * adding data full run * tile generation * tribal tile deploy
148 lines
3.1 KiB
JSON
148 lines
3.1 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Score Run",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"score-run"
|
|
]
|
|
},
|
|
{
|
|
"name": "Generate Score Post",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"generate-score-post"
|
|
]
|
|
},
|
|
{
|
|
"name": "Data Cleanup",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"data-cleanup"
|
|
]
|
|
},
|
|
{
|
|
"name": "Census Cleanup",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"census-cleanup"
|
|
]
|
|
},
|
|
{
|
|
"name": "Download Census",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"census-data-download"
|
|
]
|
|
},
|
|
{
|
|
"name": "Score Full Run",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"score-full-run"
|
|
]
|
|
},
|
|
{
|
|
"name": "Combine Score and GeoJSON",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"geo-score"
|
|
]
|
|
},
|
|
{
|
|
"name": "Generate Score Tiles",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"generate-map-tiles"
|
|
]
|
|
},
|
|
{
|
|
"name": "Generate Tribal Tiles",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"generate-map-tiles",
|
|
"-t"
|
|
]
|
|
},
|
|
{
|
|
"name": "ETL Run",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"etl-run"
|
|
]
|
|
},
|
|
{
|
|
"name": "ETL Run NRI",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"etl-run",
|
|
"--dataset",
|
|
"national_risk_index"
|
|
]
|
|
},
|
|
{
|
|
"name": "ETL Run Tribal",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"etl-run",
|
|
"--dataset",
|
|
"tribal"
|
|
]
|
|
},
|
|
{
|
|
"name": "Data Full Run",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "data_pipeline.application",
|
|
"args": [
|
|
"data-full-run",
|
|
]
|
|
},
|
|
{
|
|
"name": "poetry install",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "poetry",
|
|
"args": [
|
|
"install"
|
|
]
|
|
},
|
|
{
|
|
"name": "poetry update",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "poetry",
|
|
"args": [
|
|
"update"
|
|
]
|
|
},
|
|
]
|
|
}
|