Nothing
r <- rast(nrow = 10, ncol = 10, xmin = 0, ymin = 0, xmax = 10, ymax = 10, crs = "EPSG:4326")
values(r) <- 1:100
target <- "+proj=laea +lat_0=45 +lon_0=-100 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs"
x <- project(r, target, method = "bilinear", res = 1e5)
tmp <- rast(crs = target, extent = ext(x), resolution = 1e5)
y <- project(r, tmp)
expect_true(all.equal(x, y))
## pipelines
## basic: returns a data.frame with expected columns
pp <- proj_pipelines("EPSG:4326", "EPSG:32632")
## first pipeline should be instantiable with 0 grids needed
expect_true(pp$instantiable[1])
expect_equal(pp$grid_count[1], 0)
expect_true(nchar(pp$definition[1]) > 0)
## accuracy == 0 for an exact same-datum transformation
#CI OSX fail
#expect_equal(pp$accuracy[1], 0)
## accepts SpatRaster input
r <- rast(ncols=10, nrows=10, crs="EPSG:4326")
pp2 <- proj_pipelines(r, "EPSG:3857")
expect_true(nrow(pp2) >= 1)
## grid_availability="DISCARD" reduces results
pp_all <- proj_pipelines("EPSG:5070", "EPSG:4326")
pp_disc <- proj_pipelines("EPSG:5070", "EPSG:4326", grid_availability="DISCARD")
expect_true(nrow(pp_disc) <= nrow(pp_all))
expect_true(nrow(pp_disc) >= 1)
## AOI constrains results
pp_aoi <- proj_pipelines("EPSG:5070", "EPSG:4326", AOI=ext(-100, -90, 30, 40))
expect_true(nrow(pp_aoi) >= 1)
expect_true(nrow(pp_aoi) <= nrow(pp_all))
## invalid CRS
expect_error(proj_pipelines("INVALID", "EPSG:4326"))
expect_error(proj_pipelines("EPSG:4326", "INVALID"))
###
a <- rast(ncols=40, nrows=40, xmin=-120, xmax=-60, ymin=20, ymax=60, crs="EPSG:4326")
values(a) <- 1:ncell(a)
b <- rast(ncols=94, nrows=124, ext=c(-2562000, 3768000, -364000, 4470000), crs="EPSG:5070")
pp <- proj_pipelines("EPSG:4326", "EPSG:5070")
w1 <- project(a, b, pipe=pp[1,])
w2 <- project(a, b, pipe=pp[2,])
w3 <- project(a, crs(b), pipe=pp[2,])
w4 <- project(a, pipe=pp[2,])
#expect_true(all.equal(w1, w2))
#expect_true(all.equal(w3, w4))
r <- rast(ncols=40, nrows=40, xmin=-80, xmax=-56.5, ymin=45, ymax=62, crs="EPSG:4326")
values(r) <- 1:ncell(r)
vr <- as.polygons(r)
p1 <- project(vr, pipe=pp[1,])
p2 <- project(vr, pipe=pp[2,])
p3 <- project(vr, pipe=pp[3,])
p1b <- project(vr, "EPSG:5070", pipe=pp[1,])
p3b <- project(vr, "EPSG:5070", pipe=pp[3,])
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.