Changelog
Source:NEWS.md
rapr 1.0.0 (2025-05-12)
CRAN release: 2025-05-12
- Initial CRAN release!
- Major
get_rap()
interface updates- Added
source
argument to toggle between RAP 30m ("rap-30m"
; Landsat) and RAP 10m ("rap-10m"
; Sentinel 2) products- For details on new RAP 10m products see: http://rangeland.ntsg.umt.edu/data/rangeland-s2/README and
citation("rapr")
- For details on new RAP 10m products see: http://rangeland.ntsg.umt.edu/data/rangeland-s2/README and
- Added
template
argument for setting target grid for projection of result.- Default behavior (
template=NULL
) will return a SpatRaster in the native grid system of requested RAP source. - For a large area of interest (that spans multiple UTM zones and
source="rap-10m"
) standard “EPSG:5070” grid system will be used whentemplate
is not set by the user
- Default behavior (
- Added
vrt
argument. Whenvrt=TRUE
the merging/resampling process is bypassed and a GDAL VRT file is generated to reference the source directly. - Added
legacy
argument. Default (legacy=FALSE
) behavior is to use GDAL via terra for all raster and vector data processing. Setlegacy=TRUE
to use sfgdal_translate
implementation from rapr 0.1.x.
- Added
Breaking changes
- Default behavior is to use GDAL via terra for all raster data processing. Set
legacy=TRUE
to use sfgdal_translate
implementation from rapr 0.1.x. - SpatRaster objects passed as
x
are now used astemplate
so that the output conforms with the input grid system. To avoid this behavior either specifytemplate
with the desired grid template, or convert the SpatRaster to a polygon extent withterra::as.polygons(ext=TRUE)
(or similar) -
progress
argument has been replaced withverbose
; forlegacy=TRUE
rapr 0.1.2 (2024-10-24)
- First tagged GitHub release
- Check that output directory exists before writing output to path specified in
filename
(#3)
rapr 0.1.1 (2022-03-21)
- Updated default arguments (
years
,product
) toget_rap()
- Added a new vignette titled “Accessing Rangeland Analysis Platform (RAP) Data with R”
- Added a
NEWS.md
file to track changes to the package.