Skip to content

Commit 01ca2e0

Browse files
committed
adjusting all file calls to use here
1 parent f42d3f0 commit 01ca2e0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

datasets/atn_satellite_telemetry/atn_satellite_telemetry_netCDF2DwC.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ atn
7272
This gathers not only the global attributes, but the variable level attributes as well. As you can see in the **variable** column the term `NC_GLOBAL` refers to global attributes.
7373

7474
```{r}
75-
metadata <- ncmeta::nc_atts(file_nc)
75+
metadata <- ncmeta::nc_atts(here(file_nc))
7676
metadata
7777
```
7878

7979
### Store the data as a tibble
8080
Collect the data dimensioned by `time` from the netCDF file as a tibble. Then, print the first ten rows.
8181

8282
```{r}
83-
atn <- tidync(file_nc)
83+
atn <- tidync(here(file_nc))
8484
8585
atn_tbl <- atn %>% hyper_tibble(force=TRUE)
8686
@@ -145,7 +145,7 @@ Now start working through the crosswalk. A few thoughts about some of the functi
145145

146146
```{r}
147147
# Defined to grab attributes in subsequent code
148-
nc <- nc_open(file_nc)
148+
nc <- nc_open(here(file_nc))
149149
150150
occurrencedf <- atn_tbl %>%
151151
select( # Select desired columns

0 commit comments

Comments
 (0)