Have a DTM. Am creating contour lines. Are there any tools in FME that can be used to identify any Depression Contours in the data?
@aron I would guess a depression is always a closed contour. So if the area and elevation of a contour is less than it's neighbour (NeighborFinder) then it's probably a depression. Probably doesn't pick up all cases but might be a start.
@Mark Stoakes Yes, that would catch some of the depressions. Would imagine that it would miss quite a few in alpine terrain though. It would probably be more effective to analyse the DTM, does FME have anything similar to SAGA Fill Sinks?
If you are using FME to create contour lines with the ContourGenerator transformer, and then you coerce the contour lines into polygons using the GeometryCoercer and then expose the polygon orientation using the OrientationExtractor than the contour lines for depressions are identified by having a right hand rule orientation.
Happy FME:-) ing
Cheers
SRG
Happy FME:-) ing
Cheers
SRG
Hi
That wont really work since I was working with contour lines. I ended up stacking the closed contour lines into lists and then finding what I needed through a series of list sorts.