search for: exactextractr

Displaying 7 results from an estimated 7 matches for "exactextractr".

2023 Dec 06
2
Volume of polygon
...s email.I dont know if the codes are correct or not. Following this, I have another question too. I want to know if the volume of the reservoir rises or doubles, what would be the elevation? I would be more than happy if anyone could help me. Sincerely " library(raster) library(terra) library(exactextractr) library(dplyr) library(sf) r <- raster("Base.tif") p <- shapefile("p.shp") r <- crop(r, p) r <- mask(r, p) x <- exact_extract(r, p, coverage_area = TRUE) x1 = as.data.frame(x[1]) head(x1) x1 = na.omit(x1) x1$Height = max(x1[,1]) - x1[,1] x1$Vol = x1[,2] * x1[,...
2023 Dec 06
2
Volume of polygon
...ot. Following this, I have another question > too. > I want to know if the volume of the reservoir rises or doubles, what would > be the elevation? > I would be more than happy if anyone could help me. > Sincerely > > " > library(raster) > library(terra) > library(exactextractr) > library(dplyr) > library(sf) > r <- raster("Base.tif") > p <- shapefile("p.shp") > r <- crop(r, p) > r <- mask(r, p) > x <- exact_extract(r, p, coverage_area = TRUE) > > x1 = as.data.frame(x[1]) > head(x1) > x1 = na.omit(x1) &gt...
2023 Dec 06
1
Volume of polygon
...ot. Following this, I have another question > too. > I want to know if the volume of the reservoir rises or doubles, what would > be the elevation? > I would be more than happy if anyone could help me. > Sincerely > > " > library(raster) > library(terra) > library(exactextractr) > library(dplyr) > library(sf) > r <- raster("Base.tif") > p <- shapefile("p.shp") > r <- crop(r, p) > r <- mask(r, p) > x <- exact_extract(r, p, coverage_area = TRUE) > > x1 = as.data.frame(x[1]) > head(x1) > x1 = na.omit(x1) &gt...
2023 Nov 20
1
Calculating volume under polygons
Dear all; I am trying to calculate volume under each polygon of a shapefile according to a DEM. when I run the code, it gives me an error as follows. " Error in h(simpleError(msg, call)) : error in evaluating the argument 'x' in selecting a method for function 'addAttrToGeom': sp supports Z dimension only for POINT and MULTIPOINT. use `st_zm(...)` to coerce to XY dimensions
2024 Apr 09
1
Question regarding reservoir volume and water level
...water and it is known. >> I have the Digital Elevation Model (DEM) of the region (reservoir and its >> surrounding area). I have calculated the volume of the current reservoir >> (7e6 m3) using the following codes. >> library(raster) >> library(terra) >> library(exactextractr) >> library(dplyr) >> library(sf) >> # Calculate volume for polygon >> # Read the DEM raster file >> r <- rast("E:/...DEM.tif") >> # Read the polygon shapefile >> p <- st_read("E:/...Dam.shp") >> >> r <- crop(r, exte...
2024 Apr 10
1
Question regarding reservoir volume and water level
...t; I have the Digital Elevation Model (DEM) of the region (reservoir and > its > >> surrounding area). I have calculated the volume of the current reservoir > >> (7e6 m3) using the following codes. > >> library(raster) > >> library(terra) > >> library(exactextractr) > >> library(dplyr) > >> library(sf) > >> # Calculate volume for polygon > >> # Read the DEM raster file > >> r <- rast("E:/...DEM.tif") > >> # Read the polygon shapefile > >> p <- st_read("E:/...Dam.shp") &gt...
2024 Apr 07
1
Question regarding reservoir volume and water level
John, Your reaction was what my original reaction was until I realized I had to find out what a DEM file was and that contains enough of the kind of depth-dimension data you describe albeit what may be a very irregular cross section to calculate for areas and thence volumes. If I read it correctly, this can be a very real-world problem worthy of a solution, such as in places like California