Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vignettes/epa_download.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Start by downloading the AQS data files with `download_data`.
* `acknowledgement = TRUE`: acknowledge that data files may consume local
storage.
* `unzip = TRUE`: unzip downloaded zip files (default).
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir <- tempdir()
Expand All @@ -53,7 +53,7 @@ amadeus::download_data(
```

```{r, echo = FALSE}
cat('[1] "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2"')
cat('[1] "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"')
```

### Processing data
Expand Down
4 changes: 2 additions & 2 deletions vignettes/gridmet_workflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Start by downloading the netCDF data files with `download_data`.
* `year = c(2019, 2020)`: years of interest.
* `directory_to_save = dir`: directory to save the downloaded files.
* `acknowledgement = TRUE`: acknowledge that the raw data files are large and may consume lots of local storage.
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir <- tempdir()
Expand All @@ -48,7 +48,7 @@ amadeus::download_data(
```

```{r, echo = FALSE}
cat('[1] "aa5116525468299d1fc483b108b3e841fc40d7e5"')
cat('[1] "aa5116525468299d1fc483b108b3e841"')
```

Check the downloaded netCDF files.
Expand Down
6 changes: 3 additions & 3 deletions vignettes/modis_workflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Downloaded data files are Hierarchical Data Format (HDF), with the extension `.h
* `nasa_earth_data_token = Sys.getenv("NASA_EARTHDATA_TOKEN")`: User-specific NASA credentials.
* `directory_to_save = dir_mod11a1`: directory to save the downloaded files.
* `acknowledgement = TRUE`: acknowledge that the raw data files are large and may consume lots of local storage.
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir_mod11a1 <- file.path(tempdir(), "mod11a1")
Expand Down Expand Up @@ -309,7 +309,7 @@ Downloaded data files are Hierarchical Data Format version 5 (HDF5), with the ex
* `nasa_earth_data_token = Sys.getenv("NASA_EARTHDATA_TOKEN")`: User-specific NASA credentials.
* `directory_to_save = dir_vnp46a2`: directory to save the downloaded files.
* `acknowledgement = TRUE`: acknowledge that the raw data files are large and may consume lots of local storage.
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir_vnp46a2 <- file.path(tempdir(), "vnp46a2")
Expand Down Expand Up @@ -547,7 +547,7 @@ cat("[1] \"vignettes/data/LAADS_query.2025-08-12T14_29.csv\"\n")
* `mod06_links = "vignettes/data/LAADS_query.2025-08-12T14_29.csv"`: Manually downloaded CSV file with MOD06_L2 links.
* `directory_to_save = dir_mod06l2`: directory to save the downloaded files.
* `acknowledgement = TRUE`: acknowledge that the raw data files are large and may consume lots of local storage.
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir_mod06l2 <- file.path(tempdir(), "mod06l2")
Expand Down
2 changes: 1 addition & 1 deletion vignettes/narr_workflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Start by downloading the netCDF data files with `download_data`.
* `year = c(2021, 2022)`: years of interest.
* `directory_to_save = dir`: directory to save the downloaded files.
* `acknowledgement = TRUE`: acknowledge that the raw data files are large and may consume lots of local storage.
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir <- tempdir()
Expand Down
4 changes: 2 additions & 2 deletions vignettes/terraclimate_workflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Start by downloading the netCDF data files with `download_data`.
* `year = c(2021, 2022)`: years of interest.
* `directory_to_save = dir`: directory to save the downloaded files.
* `acknowledgement = TRUE`: acknowledge that the raw data files are large and may consume lots of local storage.
* `hash = TRUE`: generate unique SHA-1 hash for the downloaded files.
* `hash = TRUE`: generate unique MD5 hash for the downloaded files.

```{r, eval = FALSE}
dir <- tempdir()
Expand All @@ -48,7 +48,7 @@ amadeus::download_data(
```

```{r, echo = FALSE}
cat('[1] "344cddba906371b701f661ccebeef3f427b2d8ec"')
cat('[1] "344cddba906371b701f661ccebeef3f4"')
```

Check the downloaded netCDF files.
Expand Down