Skip to content

Commit

Permalink
Recaptilise letters
Browse files Browse the repository at this point in the history
  • Loading branch information
RuthBowyer committed Dec 3, 2024
1 parent 1059cce commit 62965e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/download.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ grep -iE "resample.*cpm.*rainfall.*01.*_[0-9]{8}-[0-9]{8}.*" data-v1.0.txt | xar

## Crops
### HADS
For a given region `<REGION>` (either `scotland`, `glasgow`, `manchester` or `london`), for measurement `<MEASURE>` (either `tasmax`, `tasmin` or `pr`), the monthly data can be downloaded and decompressed with:
For a given region `<REGION>` (either `Scotland`, `Glasgow`, `Manchester` or `London`), for measurement `<MEASURE>` (either `tasmax`, `tasmin` or `pr`), the monthly data can be downloaded and decompressed with:
```shell
grep -iE "crop.*hads.*<REGION>.*<MEASURE>.*<RUN>_[0-9]{8}-[0-9]{8}.*" data-v1.0.txt | xargs -n 1 curl -O; gunzip *.nc.gz
```
Expand All @@ -44,11 +44,11 @@ grep -iE ".*crop.*hads.*manchester.*tasmax.*_[0-9]{8}-[0-9]{8}\.nc\.gz" data-v1.
```

### CPM
For a given region `<REGION>` (either `scotland`, `glasgow`, `manchester` or `london`), for measurement `<MEASURE>` (either `tasmax`, `tasmin` or `pr`), for run `<RUN>` (either `01`, `05`, `06`, `07`, `08`), the yearly data can be downloaded and decompressed with:
For a given region `<REGION>` (either `Scotland`, `Glasgow`, `Manchester` or `London`), for measurement `<MEASURE>` (either `tasmax`, `tasmin` or `pr`), for run `<RUN>` (either `01`, `05`, `06`, `07`, `08`), the yearly data can be downloaded and decompressed with:
```shell
grep -iE "crop.*cpm.*<REGION>.*<MEASURE>.*<RUN>_[0-9]{8}-[0-9]{8}.*" data-v1.0.txt | xargs -n 1 curl -O; gunzip *.nc.gz
```
For example, for region `manchester`, measure `tasmax`, run `01`:
For example, for region `Manchester`, measure `tasmax`, run `01`:
```shell
grep -iE ".*crop.*cpm.*manchester.*tasmax.*01_[0-9]{8}-[0-9]{8}\.nc\.gz" data-v1.0.txt | xargs -n 1 curl -O; gunzip *.nc.gz
```

0 comments on commit 62965e1

Please sign in to comment.