How should ROI size be calculated? #77
Replies: 3 comments 5 replies
|
You are correct that coercing all ROIs into a certain Perhaps a path forward is to automatically compute the e.g. from here: which outputs The epsg code is therefore |
|
Another solution could be to use a unique equal-area projection, these are projections that conserve area: https://gisgeography.com/equal-area-projection-maps/ |
Brief Description of Update and ProblemsSo I have an update on the ROI size problem. Using the method Dan suggested here I have created a function called What's confusing is that when I check the area of the ROIs created in the Notebook Containing the new codeI've included instructions on how to replicate this behavior in a special notebook on my fork of coastseg. Please try it out and let me know if you see anything wrong with my methods. Warning
|
Uh oh!
There was an error while loading. Please reload this page.
How ROI Size is Currently defined
CoastSeg's ROI size should be accurate across all of the Earth so the user knows how much land their ROIs cover. Currently, the ROI's size is defined in meters according to
ESPG 3857and converted back toESPG 4326so it can be displayed on theipyleafletmap. UnfortunatelyESPG 3857is not accurate across all of the world because in some regions the meters are squished together while in others they are much farther apart.How to Proceed?
I am no expert on CRS and I don't know when I should convert from one to another. How should the size of the ROIs be defined in a way that's more accurate than the current method of defining it in
metersinESPG 3857?Resources
espgis used for Google Maps and Google Earth.All reactions