USGS-WiM / StreamStatsServices

StreamStats REST Services
https://streamstats.usgs.gov/streamstatsservices
Other
1 stars 0 forks source link

Delineation removing Holes in OK #38

Closed jknewson closed 6 years ago

jknewson commented 6 years ago

Latitude: 36.721342677919374 Longitude: -101.48938179016113 removes larger holes being removed. See https://streamstats.freshdesk.com/helpdesk/tickets/109682 image

jknewson commented 6 years ago

reviewing past documentation it appears we had a similar issue in 4/16/15 using arcpy.EliminatePolygonPart_management. Which is used to remove slivers created by Archydro's global clip procedure. we shortly updated the method to use 90 sqr meters instead of 1000. result = arcpy.EliminatePolygonPart_management(polyFC, os.path.join(path,"GlobalWatershed"), "AREA_AND_PERCENT", "90 squaremeters", 1, "ANY") http://desktop.arcgis.com/en/arcmap/10.5/tools/data-management-toolbox/eliminate-polygon-part.htm

This time we updated Condition to AREA only instead of AREA_AND_PERCENT. image