sinkovit / Spatial-ecology

Space use software deployed in the Spatial Ecology Gateway
MIT License
2 stars 0 forks source link

Test MCP point display in dev3 #56

Closed sinkovit closed 11 months ago

sinkovit commented 1 year ago

I made one small change to minConvexPolygon() to get it to work correctly after upgrading R, RStudio and packages.

mymap <- ggmap(mybasemap) + geom_point(data = gpsdata.geo, aes(x = coords.x1, y = coords.x2, colour = id), size = 0.8, alpha = 0.5) + theme(legend.position = c(-0.2, 0.90)) + labs(x = "Longitude", y = "Latitude")

Please test in your R installation and if everything is still working in your end please merge into dev

monaw commented 1 year ago

@sinkovit - i just saw this issue; is it still valid? looks like currently our code is:

  # Plot data points on basemap
  mymap <- ggmap(mybasemap) +
    geom_point(data = gpsdata.geo, 
               aes(x = xdata, y = ydata, colour = id), size = 0.8, alpha = 0.5)  +
    theme(legend.position = c(-0.2, 0.90)) +
    labs(x = "Longitude", y = "Latitude")

which one is correct?