Hi all,
I'm curious if anyone has been able to clip a polygon dataset using the extent of a raster dataset, using ArcPro? Or simply get the bbox of the raster without python. I'd much prefer to save time and not to convert the raster to polygon, as it is extremely large and high-res, but maybe this is a pipe dream.
Thanks!
Solved! Go to Solution.
@jblng not sure what extensions you have, but one approach is to reclassify your raster to be values of NODATA and 1 (or 0 and 1) etc and then run Polygon to Raster and just delete feature that isn't 1.
@jblng not sure what extensions you have, but one approach is to reclassify your raster to be values of NODATA and 1 (or 0 and 1) etc and then run Polygon to Raster and just delete feature that isn't 1.
Hi David, thanks so much. I'll give that a go. Reclass will probably quicken the raster to polygon process!