you guys know how to determine domes in a raster. I thought something of "curvature", but still cannot distinguish them from basins.
(ingrid == focalmax(ingrid)) and (ingrid > focalmin(ingrid))
Bill Huber would probably have a better idea -- but I can't resist suggesting that if you're looking for local maxima you could try selecting areas where (ingrid == focalmax(ingrid)) and (ingrid > focalmin(ingrid))Using a larger-than-default neighborhood may help you find broader "domes" that have some flat areas on the top. These areas could then be collapsed to single-cells or points using the Zonal Geometry tool with the CENTROID option.
("inraster" == FocalStatistics("inraster","#","MAXIMUM")) and ("inraster" > FocalStatistics("inraster","#","MINIMUM"))
Sorry, I slipped back into 9x map algebra. Here's a raster calculator syntax("inraster" == FocalStatistics("inraster","#","MAXIMUM")) and ("inraster" > FocalStatistics("inraster","#","MINIMUM"))Using a larger-than-default neighborhood may help you find broader "domes" that have some flat areas on the top. These areas could then be collapsed to single-cells or points using the Zonal Geometry tool with the CENTROID option.This will select areas where the center cell is the equal to or greater than the maximum of the neighborhood, as long as the whole neighborhood is not the same value (flat).
("dtm20" == FocalStatistics("dtm20","5","MAXIMUM")) and ("dtm20" > FocalStatistics("dtm20","5","MINIMUM"))
Okay, I get some idea of what you´re heading for and the syntax. I tried it but it failed
"dtm20" == FocalStatistics("dtm20",NbrCircle(5),"MAXIMUM")
Okay -- try this:1. Add "dtm20" to ArcMap as a raster layer2. Start Raster Calculator.3. Compose this expression."dtm20" == FocalStatistics("dtm20",NbrCircle(5),"MAXIMUM")This should give you a 1-0 grid where 1 (True) cells are where the cell is at the local maximum for the 5x5 circular neighborhood. This will include flat areas.You can play with it further once you get that far.Example of how to specify neighborhood are in the help for Focal Statistics.
Does anyone have a method for detecting mound boundaries?
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.