Skip to content

Commit 442c939

Browse files
committed
fix non-unicode chars in data.land
1 parent 2ef3daf commit 442c939

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

modules/data.land/R/gSSURGO_Query.R

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
#' | `chorizon.om_r` | Organic matter (<2 mm soil) | % |
3131
#' | `chorizon.hzdept_r` | Horizon top depth | cm |
3232
#' | `chfrags.fragvol_r` | Rock fragments | % (by volume)|
33-
#' | `chorizon.dbthirdbar_r`| Bulk density at field capacity | g/cm³ |
33+
#' | `chorizon.dbthirdbar_r`| Bulk density at field capacity | g/cm3 |
3434
#' | `chorizon.ph1to1h2o_r` | Soil pH (1:1 H2O) | pH (unitless)|
35-
#' | `chorizon.cokey` | Component key (identifier) | |
36-
#' | `chorizon.chkey` | Horizon key (identifier) | |
35+
#' | `chorizon.cokey` | Component key (identifier) | - |
36+
#' | `chorizon.chkey` | Horizon key (identifier) | - |
3737
#'
3838
#' **API stability:** The NRCS occasionally modifies the API schema. If queries fail,
3939
#' adjustments may be required here to align with the updated structure.
@@ -197,8 +197,8 @@ ssurgo_mukeys_bbox <- function(bbox) {
197197
stop(
198198
paste0(
199199
"Bounding box area (", format(area, scientific = FALSE),
200-
" ) exceeds maximum allowed area (", format(SSURGO_API_MAX_AREA_M2, scientific = FALSE),
201-
" ). Use ssurgo_mukeys_bigbbox() for large bounding boxes."
200+
" m2) exceeds maximum allowed area (", format(SSURGO_API_MAX_AREA_M2, scientific = FALSE),
201+
" m2). Use ssurgo_mukeys_bigbbox() for large bounding boxes."
202202
)
203203
)
204204
}
@@ -260,8 +260,8 @@ ssurgo_mukeys_point <- function(point, distance) {
260260
stop(
261261
paste0(
262262
"Search radius area (", format(circle_area, scientific = FALSE),
263-
" ) exceeds maximum allowed area (", format(SSURGO_API_MAX_AREA_M2, scientific = FALSE),
264-
" )."
263+
" m2) exceeds maximum allowed area (", format(SSURGO_API_MAX_AREA_M2, scientific = FALSE),
264+
" m2)."
265265
)
266266
)
267267
}

modules/data.land/man/gSSURGO.Query.Rd

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

0 commit comments

Comments
 (0)