gdalcubes/inst/tinytest/test_cube_view.R
2022-03-30 15:34:25 +02:00

67 lines
2.4 KiB
R

library(gdalcubes)
v = cube_view(srs = "EPSG:4326", extent = list(left = 5, right = 10, bottom = 48, top = 53,
t0 = "2021-01-01", t1 = "2021-12-31"), dt = "P1D",
dx = 0.01, dy = 0.01)
expect_equal(v$space$nx, 500)
expect_equal(v$space$ny, 500)
expect_equal(v$space$dx, 0.01)
expect_equal(v$space$dy, 0.01)
expect_equal(v$time$nt, 365)
v = cube_view(v, dt = "P1M")
expect_equal(v$space$nx, 500)
expect_equal(v$space$ny, 500)
expect_equal(v$space$dx, 0.01)
expect_equal(v$space$dy, 0.01)
expect_equal(v$time$nt, 12)
expect_equal(v$time$t0, "2021-01-01")
expect_equal(v$time$t1, "2021-12-31")
v = cube_view(v, nx = 5000, ny = 5000)
expect_equal(v$space$nx, 5000)
expect_equal(v$space$ny, 5000)
expect_equal(v$space$dx, 0.001)
expect_equal(v$space$dy, 0.001)
v = cube_view(srs = "EPSG:4326", extent = list(left = 5, right = 10, bottom = 48, top = 53,
t0 = "2021-01-06", t1 = "2021-12-15"), dt = "P1M",
dx = 0.01, dy = 0.01)
expect_equal(v$time$nt, 12)
expect_equal(v$time$t0, "2021-01-01")
expect_equal(v$time$t1, "2021-12-31")
v = cube_view(srs = "EPSG:4326", extent = list(left = 5, right = 10, bottom = 48, top = 53,
t0 = "2021-01", t1 = "2021-05"), dt = "P2M",
dx = 0.01, dy = 0.01)
expect_equal(v$time$nt, 3)
expect_equal(v$time$t0, "2021-01-01")
expect_equal(v$time$t1, "2021-06-30")
v = cube_view(srs = "EPSG:4326", extent = list(left = 5, right = 10, bottom = 48, top = 53,
t0 = "2021-01", t1 = "2021-05"), dt = "P2Y",
dx = 0.01, dy = 0.01)
expect_equal(v$time$nt, 1)
expect_equal(v$time$t0, "2021-01-01")
expect_equal(v$time$t1, "2022-12-31")
v = cube_view(srs = "EPSG:4326", extent = list(left = 5, right = 10, bottom = 48, top = 53,
t0 = "2021-01", t1 = "2021-05"), dt = "P1D",
dx = 0.01, dy = 0.01)
expect_equal(v$time$t0, "2021-01-01")
expect_equal(v$time$t1, "2021-05-31")
v = cube_view(srs = "EPSG:4326", extent = list(left = 5, right = 10, bottom = 48, top = 53,
t0 = "2021-01", t1 = "2021-05"), dt = "P2D",
dx = 0.01, dy = 0.01)
expect_equal(v$time$t0, "2021-01-01")
expect_equal(v$time$t1, "2021-06-01")