Skip to content

Commit

Permalink
build site
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejohnson51 committed Jul 19, 2023
1 parent 5f329b9 commit 02782bd
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 17 deletions.
14 changes: 12 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ This catalog is an [evolving, federated collection of datasets](https://github.c
3. A set of [shortcuts](https://mikejohnson51.github.io/climateR/reference/index.html#shortcuts) that implement these methods for a core set of selected catalog elements


> :warning: **Python Users**: Access the to data catalogs is available through the USGS [`gdptools`](https://gdptools.readthedocs.io/en/latest/) package. Directly analogous climateR functionality can be found in [`climatePy`](https://github.com/LynkerIntel/climatePy)
> :warning: **Python Users**: Data catalog access is available through the USGS [`gdptools`](https://gdptools.readthedocs.io/en/latest/) package. Directly analogous climateR functionality can be found in [`climatePy`](https://github.com/LynkerIntel/climatePy)
# Installation

Expand Down Expand Up @@ -86,6 +85,17 @@ system.time({
plot(d$precipitation_amount)
```

# Basic Animation

```{r, eval = FALSE}
animation(d$precipitation_amount, AOI = AOI, "man/figures/ex_gif.gif")
```

```{r, echo = FALSE}
knitr::include_graphics("man/figures/ex_gif.gif")
```
!["man/ex_gif.gif"]("man/ex_gif.gif")

# Integration with `zonal`

```{r}
Expand Down
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ be accessed by the data access utilities.
that implement these methods for a core set of selected catalog
elements

> :warning: **Python Users**: Access the to data catalogs is available
> through the USGS
> [`gdptools`](https://gdptools.readthedocs.io/en/latest/) package.
> Directly analogous climateR functionality can be found in
> :warning: **Python Users**: Data catalog access is available through
> the USGS [`gdptools`](https://gdptools.readthedocs.io/en/latest/)
> package. Directly analogous climateR functionality can be found in
> [`climatePy`](https://github.com/LynkerIntel/climatePy)
# Installation
Expand Down Expand Up @@ -81,11 +80,20 @@ system.time({
endDate = "1991-11-06")
})
#> user system elapsed
#> 0.257 0.056 1.223
#> 0.225 0.060 5.582
```

<img src="man/figures/README-unnamed-chunk-7-1.png" width="100%" />

# Basic Animation

``` r
animation(d$precipitation_amount, AOI = AOI, "man/figures/ex_gif.gif")
```

<img src="man/figures/ex_gif.gif" width="100%" />
![“man/ex_gif.gif”](%22man/ex_gif.gif%22)

# Integration with `zonal`

``` r
Expand All @@ -95,7 +103,7 @@ system.time({
county = zonal::execute_zonal(d, geom = AOI, ID = "fip_code")
})
#> user system elapsed
#> 0.421 0.025 0.494
#> 0.332 0.013 0.347
```

<img src="man/figures/README-unnamed-chunk-9-1.png" width="100%" />
<img src="man/figures/README-unnamed-chunk-11-1.png" width="100%" />
23 changes: 15 additions & 8 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified docs/reference/figures/README-unnamed-chunk-11-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/reference/figures/ex_gif.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/README-unnamed-chunk-11-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added man/figures/ex_gif.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 02782bd

Please sign in to comment.