Skip to content

Commit 3729f2c

Browse files
RSS updated to FY26, note that it is now 30m res
1 parent dd8adcc commit 3729f2c

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

R/WCS-utils.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1544,14 +1544,14 @@ WCS_details <- function(wcs = c('mukey', 'ISSR800', 'soilColor')) {
15441544
dsn = 'rss',
15451545
type = 'GEOTIFF_FLOAT',
15461546
desc = 'RSS map unit keys',
1547-
vintage = 'FY2023',
1547+
vintage = 'FY26',
15481548
grid = list(
1549-
dim = c(nrows = 96754, ncols = 153999),
1550-
ext = c(-2356155, 2263815, 270015, 3172635)
1549+
dim = c(nrows = 97053, ncols = 153996),
1550+
ext = c(-2356125, 2263755, 260985, 3172575)
15511551
),
15521552
na = 0,
15531553
crs = 'EPSG:5070',
1554-
res = 10,
1554+
res = 30,
15551555
rat = NULL
15561556
)
15571557
)

R/mukey-WCS.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ mukey.wcs <- function(
130130
} else {
131131
# check for reasonable resolutions
132132

133-
# CONUS grids
134-
if (db %in% .conusGrids && (res < 10 || res > 3000)) {
133+
# all CONUS grids are 30m resolution
134+
if (db %in% .conusGrids && (res < 30 || res > 3000)) {
135135
stop('`res` should be within 30 <= res <= 3000 meters')
136136
}
137137

vignettes/wcs-ssurgo.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The files backing each WCS are re-created annually after the SSURGO annual refre
3737

3838
In addition to the standard CONUS gSSURGO and gNATSGO grids, these web coverage services are also provided:
3939

40-
- Raster Soil Survey (RSS) products at 10m resolution (EPSG:5070).
40+
- Raster Soil Survey (RSS) products at 30m resolution (EPSG:5070).
4141

4242
- STATSGO2 (2016) at 30m resolution (EPSG:5070).
4343

@@ -85,7 +85,7 @@ x <- mukey.wcs(aoi = aoi, db = 'gnatsgo', ...)
8585
# select STATSGO2 grid, 30m resolution
8686
x <- mukey.wcs(aoi = aoi, db = 'statsgo', ...)
8787
88-
# select RSS grid, 10m resolution
88+
# select RSS grid, 30m resolution
8989
x <- mukey.wcs(aoi = aoi, db = 'RSS', ...)
9090
9191
# select fSSURGO grid, 30m resolution
@@ -349,7 +349,7 @@ a <- vect(a, crs = 'epsg:5070')
349349
# gNATSGO grid: 30m resolution
350350
(y <- mukey.wcs(a, db = 'gNATSGO'))
351351
352-
# RSS grid: 10m resolution
352+
# RSS grid: 30m resolution
353353
(z <- mukey.wcs(a, db = 'RSS'))
354354
355355
# graphical comparison

0 commit comments

Comments
 (0)