0

I am looking to calculate the area of different shapes from a set of x and y points (sample 1 coordinates below).

x_coordinates_1 <- c(786.0, 712.3, 717.7, 804.9, 866.1, 877.5, 866.0, 823.2, 765.5, 791.8, 830.3, 846.9, 937.1, 941.1, 983.2, 1020.5, 997.1, 996.9, 921.5, 921.2, 850.6, 850.6, 786.0)

y_coordinates_1 <- c(139.8, 245.3, 291.7, 335.6, 352.7, 402.4, 492.9, 560.1, 603.6, 631.7, 617.8, 618.1, 538.5, 476.4, 443.0, 338.4, 232.7, 232.7, 145.0, 145.0, 121.0, 120.7, 139.8)

I have had a go at using rgeos but have got stuck. Is there another method to do this?

Thanks very much

Martin Gal
  • 16,640
  • 5
  • 21
  • 39
  • Please share a [minimal reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example). – Martin Gal May 23 '20 at 16:33

1 Answers1

1

You could use the sf package to calculate the area of the polygon. First, you have to transform the list of x and y coordinates to a polygon and then calculate its area.

library(sf)

x_coordinates_1<-c(786.0,712.3,717.7,804.9,866.1,877.5,866.0,823.2,765.5,791.8,830.3,846.9,937.1,941.1,983.2,1020.5,997.1,996.9,921.5,921.2,850.6,850.6,786.0)

y_coordinates_1<-c(139.8,245.3,291.7,335.6,352.7,402.4,492.9,560.1,603.6,631.7,617.8,618.1,538.5,476.4,443.0,338.4,232.7,232.7,145.0,145.0,121.0,120.7,139.8)

# Transform your list of points to a polygon, create a simple feature from them and set its crs according to its EPSG code (here I set it to UTM 15 N)
polygon <- st_sfc(st_polygon(list(cbind(x_coordinates_1,y_coordinates_1)))) %>%
  st_set_crs(32615)

# Plot the polygon to check if geoemtry is the expected
plot(polygon,axes = TRUE)

# Calculate area of the polygon
st_area(multipoint)
# 78579.21