Skip to content

Commit

Permalink
cleanup broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsumner committed Jun 6, 2024
1 parent 50db739 commit c913e95
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion R/vapour-gdal-library.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' Configuration options may also be set as environment variables.
#'
#' See [GDAL config options](https://trac.osgeo.org/gdal/wiki/ConfigOptions) for
#' See [GDAL config options](https://gdal.org/user/configoptions.html) for
#' details on available options.
#'
#' @param option GDAL config name (see Details), character string
Expand Down
2 changes: 1 addition & 1 deletion R/vapour_vrt.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#' a "length > 1" character vector. These are all independent, this is different to the function
#' `vapour_warp_raster()` where multiple inputs are merged (possibly by sequential overlapping).
#'
#' If `geolocation` is set the '<GeoTransform>' element is forcibly removed from the vrt output, in order
#' If `geolocation` is set the 'GeoTransform' element is forcibly removed from the vrt output, in order
#' to avoid https://github.com/hypertidy/vapour/issues/210 (there might be a better fix).
#'
#' @section Rationale:
Expand Down
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ knitr::opts_chunk$set(
# vapour <img src="man/figures/logo.png" align="right" height="228" />


<!-- badges: start -->
<!-- badges: start -->
[![R_build_status](https://github.com/hypertidy/vapour/workflows/R-CMD-check/badge.svg)](https://github.com/hypertidy/vapour/actions)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/vapour)](https://cran.r-project.org/package=vapour)
[![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/vapour)](http://cranlogs.r-pkg.org/badges/vapour)
[![CRAN status](https://www.r-pkg.org/badges/version/vapour)](https://CRAN.R-project.org/package=vapour)
<!-- badges: end -->


Expand Down Expand Up @@ -200,7 +200,7 @@ See the vignettes and documentation for examples WIP.

## Context

Examples of packages that use vapour are in development, especially [whatarelief](https://github.com/hypertidy/whatarelief) and [ggdal](https://github.com/hypertidy/ggdal).
Examples of packages that use vapour are in development, especially [whatarelief](https://github.com/hypertidy/whatarelief) and [ggdal](https://github.com/rgdal-dev/ggdal).


Limitations, work-in-progress and other discussion:
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
# vapour <img src="man/figures/logo.png" align="right" height="228" />

<!-- badges: start -->

[![R_build_status](https://github.com/hypertidy/vapour/workflows/R-CMD-check/badge.svg)](https://github.com/hypertidy/vapour/actions)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/vapour)](https://cran.r-project.org/package=vapour)
[![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/vapour)](http://cranlogs.r-pkg.org/badges/vapour)
[![CRAN
status](https://www.r-pkg.org/badges/version/vapour)](https://CRAN.R-project.org/package=vapour)
<!-- badges: end -->

## Overview
Expand Down Expand Up @@ -174,7 +176,10 @@ image(x)

## or as a spatial object
library(terra)
#> terra 1.7.23
#> terra 1.7.78
```

``` r
r <- rast(ext(ex), nrows = dm[2], ncols = dm[1], crs = crs, vals = vals[[1]])
contour(r, add = TRUE)
```
Expand All @@ -196,6 +201,9 @@ vals <- vapour::vapour_warp_raster(elevation.tiles.prod, extent = ex, dimension
#> name : lyr.1
#> min value : 562
#> max value : 742
```

``` r
plot(r, col = hcl.colors(24))
```

Expand Down Expand Up @@ -228,7 +236,7 @@ See the vignettes and documentation for examples WIP.

Examples of packages that use vapour are in development, especially
[whatarelief](https://github.com/hypertidy/whatarelief) and
[ggdal](https://github.com/hypertidy/ggdal).
[ggdal](https://github.com/rgdal-dev/ggdal).

Limitations, work-in-progress and other discussion:

Expand Down
2 changes: 1 addition & 1 deletion man/vapour_set_config.Rd

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

2 changes: 1 addition & 1 deletion man/vapour_vrt.Rd

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

0 comments on commit c913e95

Please sign in to comment.