-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
79 lines (57 loc) · 2.49 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# ds-aa-afg-drought
<!-- badges: start -->
<!-- badges: end -->
This repo contains analysis/exploratory analysis of climatic variables in Afghanistan related to potential AA activities.
## Background Info
22 April 2024, work began with the objective of exploring potential ways to monitor drought in Afghanistan in the context of Anticipatory Action (AA) activities.
As of now, the only the visuals/analysis that has been shared or discussed with partners are the quarto documents in the exploration folder.
Quarto outputs for sharing will be linked as the one below:
[1. Exploratory - Exploration of Climate indicators ](https://rpubs.com/zackarno/1176973)
[2. Exploratory - Prioritization support (rainfall + IPC) ](https://rpubs.com/zackarno/1200340)
## Overview of Analysis
TBD
## Data description
TBD
## Directory structure
The code in this repository is organized as follows:
```shell
├── R # general R functions
│ ├── blob_connect.R
│ ├── load_funcs.R
│ ├── raster_utils.R
│ ├── utils.R
│ ├── utils_gee.R
│ └── zonal_tidy.R
├── README.Rmd
├── README.md
├── _targets.R # analytical pipeline scripts
├── data-raw # scripts to download process
│ ├── 01_download_ecmwf_mars_gribs.py # any data required for
│ ├── 02_process_mars_gribs_to_COGS.py # analysis
│ ├── 03_adm_boundary_parquets.R
│ ├── 04_wfp-adm2-climate-data.R
│ └── explore_climate_indicators # data sets created in GEE -
│ ├── 01_gee_chirps_adm1.R # required for exploration/01_*
│ ├── 02_gee_modis_ndvi_crops_adm1.R
│ └── 03_gee_modis_snow_cover.R
├── ds-aa-afg-drought.Rproj
├── exploration # exploratory analysis
│ ├── 01_explore_climate_indicators.qmd
│ ├── 02_prioritization_rainfall.qmd
├── requirements.txt
├── src # general python funcs &
└── blob_utils.py # scripts to run monitoring
# system pipeline
```
## Development
TBD