Skip to content

Commit 0878ae7

Browse files
committed
doc links
1 parent 8ecfc60 commit 0878ae7

16 files changed

+26
-28
lines changed

R/raster-info.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ sds_boilerplate_checks <- function(x, sds = NULL) {
8888
#'
8989
#' @section The Geo Transform:
9090
#'
91-
#' From \url{https://gdal.org/user/raster_data_model.html}.
91+
#' From \url{https://gdal.org/en/stable/user/raster_data_model.html}.
9292
#'
9393
#' The affine transform consists of six coefficients returned by
9494
#' `GDALDataset::GetGeoTransform()` which map pixel/line coordinates into

R/raster-input.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,11 @@ vapour_read_raster_hex <- function(x, band = 1,
267267
#' be separated by spaces on the command line then include as separate elements in the options character vector.
268268
#'
269269
#'
270-
#' See [GDALWarpOptions](https://gdal.org/api/gdalwarp_cpp.html#_CPPv4N15GDALWarpOptions16papszWarpOptionsE) for '-wo'.
270+
#' See [GDALWarpOptions](https://gdal.org/en/stable/api/gdalwarp_cpp.html) for '-wo'.
271271
#'
272-
#' See [GDAL transformation options](https://gdal.org/api/gdal_alg.html#_CPPv432GDALCreateGenImgProjTransformer212GDALDatasetH12GDALDatasetHPPc) for '-to'.
272+
#' See [GDAL transformation options](https://gdal.org/en/stable/api/gdal_alg.html) for '-to'.
273273
#'
274-
#' See [GDALWARP command line app](https://gdal.org/programs/gdalwarp.html) for further details.
274+
#' See [GDALWARP command line app](https://gdal.org/en/stable/programs/gdalwarp.html) for further details.
275275
#'
276276
#' Note we already apply the following gdalwarp arguments based on input R
277277
#' arguments to this function.
@@ -303,7 +303,7 @@ vapour_read_raster_hex <- function(x, band = 1,
303303
#'
304304
#' [c.proj_create](https://proj.org/development/reference/functions.html#c.proj_create)
305305
#'
306-
#' [SetFromUserInput](https://gdal.org/doxygen/classOGRSpatialReference.html#aec3c6a49533fe457ddc763d699ff8796)
306+
#' [SetFromUserInput](https://gdal.org/en/stable/doxygen/classOGRSpatialReference.html)
307307
#'
308308
#' @param x vector of data source names (file name or URL or database connection string)
309309
#' @param bands index of band/s to read (1-based), may be new order or replicated, or NULL (all bands used, the default)

R/vapour-gdal-library.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#'
66
#' Configuration options may also be set as environment variables.
77
#'
8-
#' See [GDAL config options](https://gdal.org/user/configoptions.html) for
8+
#' See [GDAL config options](https://gdal.org/en/stable/user/configoptions.html) for
99
#' details on available options.
1010
#'
1111
#' @param option GDAL config name (see Details), character string
@@ -63,7 +63,7 @@ vapour_get_config <- function(option) {
6363
#'
6464
#' [c.proj_create](https://proj.org/development/reference/functions.html#c.proj_create)
6565
#'
66-
#' [SetFromUserInput](https://gdal.org/doxygen/classOGRSpatialReference.html#aec3c6a49533fe457ddc763d699ff8796)
66+
#' [SetFromUserInput](https://gdal.org/en/stable/doxygen/classOGRSpatialReference.html)
6767
#'
6868
#' @param crs projection string, see Details.
6969
#' @export
@@ -112,7 +112,7 @@ vapour_crs_is_lonlat <- function(crs) {
112112
#' @return list containing the following
113113
#' * `FID` the feature id value (an integer, usually sequential)
114114
#' * `valid_geometry` logical value if a non-empty geometry is available
115-
#' * `type` integer value of geometry type from [GDAL enumeration](https://gdal.org/doxygen/ogr__core_8h.html#a800236a0d460ef66e687b7b65610f12a)
115+
#' * `type` integer value of geometry type from [GDAL enumeration](https://gdal.org/en/stable/doxygen/ogr__core_8h.html)
116116
#' * `xmin, xmax, ymin, ymax` numeric values of the extent (bounding box) of each geometry
117117
#' @export
118118
#'

R/vapour-package.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,8 @@
7373
#' The SQL dialect can be set to "" (empty string), "OGRSQL", or "SQLITE".
7474
#'
7575
#' The empty string indicates that the native dialect will be used, see
76-
#' [OGRSQL and SQLITE for GDAL, accessed
77-
#' 2022-11-11](https://gdal.org/user/ogr_sql_sqlite_dialect.html) and the
78-
#' [GDAL_DMD_SUPPORTED_SQL_DIALECTS development documentation (since GDAL
79-
#' 3.6)](https://gdal.org/api/raster_c_api.html#c.GDAL_DMD_SUPPORTED_SQL_DIALECTS).
76+
#' [OGRSQL and SQLITE for GDAL(https://gdal.org/en/stable/user/ogr_sql_sqlite_dialect.html) and the
77+
#' [GDAL_DMD_SUPPORTED_SQL_DIALECTS development documentation](https://gdal.org/en/stable/api/raster_c_api.html).
8078
#'
8179
#' Setting "NATIVE" as an alias for "" is quite recent and has not been tested with vapour, similarly no testing has been done
8280
#' with non OGRSQL-native or SQLITE-native drivers yet.

R/vapour_input_attributes.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ vapour_read_names <- function(dsource, layer = 0L, sql = "", limit_n = NULL, ski
143143
#' 'vapour_read_attributes()', but "field" is a clearer and more sensible name (in our opinion).
144144
#'
145145
#' These are defined for the enum OGRFieldType in GDAL itself.
146-
#' \url{https://gdal.org/doxygen/ogr__core_8h.html#a787194bea637faf12d61643124a7c9fc}
146+
#' \url{https://gdal.org/en/stable/doxygen/ogr__core_8h.html}
147147
#'
148148
#' @inheritParams vapour_read_geometry
149149
#' @export

R/vapour_vrt.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
#'
5151
#' [PROJ documentation: c.proj_create](https://proj.org/development/reference/functions.html#c.proj_create)
5252
#'
53-
#' [GDAL documentation: SetFromUserInput](https://gdal.org/doxygen/classOGRSpatialReference.html#aec3c6a49533fe457ddc763d699ff8796)
53+
#' [GDAL documentation: SetFromUserInput](https://gdal.org/en/stable/doxygen/classOGRSpatialReference.html)
5454
#'
5555
#' @param x data source name, filepath, url, database connection string, or VRT text
5656
#' @param extent (optional) numeric extent, xmin,xmax,ymin,ymax

R/vapour_vsi_list.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#' Obtain the names of available items in a virtual file source.
44
#'
55
#' The `dsource` must begin with a valid form of the special `vsiPREFIX`, for details
6-
#' see [GDAL Virtual File Systems](https://gdal.org/user/virtual_file_systems.html).
6+
#' see [GDAL Virtual File Systems](https://gdal.org/en/stable/user/virtual_file_systems.html).
77
#'
88
#'
99
#' Note that the listing is not recursive, and so cannot be used for automation. One would

man/vapour-package.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/vapour_geom_summary.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/vapour_raster_info.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)