-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcum_swe_rast.R
50 lines (34 loc) · 1.28 KB
/
cum_swe_rast.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# create cumulativ swe change raster
# redid swe change code to be proper
# march 7th, 2022
library(terra)
setwd("/Users/jacktarricone/ch1_jemez_data/gpr_rasters_ryan/final_swe_change/")
# read in rasters we just made
dswe_feb19_26 <-rast("dswe_feb19-26.tif")
dswe_feb12_19_v1 <-rast("dswe_feb12-19.tif")
# crop down slightly
dswe_feb12_19 <-crop(dswe_feb12_19_v1, ext(dswe_feb19_26))
pair_1 <-mask(dswe_feb12_19, dswe_feb19_26, maskvalue = NA)
pair_2 <-mask(dswe_feb19_26, pair_1, maskvalue = NA)
# substract
dswe_cum <-pair_1 + pair_2
plot(dswe_cum)
# writeRaster(dswe_cum,"dswe_cum.tif")
############
# vectorize JPL DEM for A map making
#############
jpl <-rast("/Users/jacktarricone/ch1_jemez_data/gpr_rasters_ryan/dem_feb12-19.tif")
jpl_test <-jpl
values(jpl_test)[values(jpl) > 0] <-1
plot(jpl_test)
# convert to vector data
jpl_shp <-as.polygons(jpl,
dissolve = TRUE,
multi = TRUE,
na.rm = TRUE,
extent = FALSE, crs = crs(jpl_test))
plot(jpl_shp) # test plot
## aggregate polyongs up to just data extent
jpl_shp_v1 <- aggregate(jpl_shp, dissolve = TRUE, fun = "mean",cores = 10)
plot(jpl_shp_v1)
# writeVector(jpl_shp_v1, "/Users/jacktarricone/ch1_jemez_data/vector_data/jpl_dem_extent.shp")