Opened 15 years ago

Closed 5 years ago

#2736 closed enhancement (wontfix)

Warping with cutline and blending for large and complex cut polygons

Reported by: asgerpetersen Owned by: warmerdam
Priority: normal Milestone: closed_because_of_github_migration
Component: Algorithms Version: 1.6.0
Severity: normal Keywords: cutline gdalwarp
Cc: Kurt Schwehr

Description

When warping with a cutline and using the blend option the processing time is heavily dependent on the complexity of the cut polygon. If a large part of the cut polygon falls outside the raster a lot of time is wasted in the GEOSDistance calls.

I have for instance tried cutting together two rasters of 2km x 2km using a coastline polygon which is very complex and has a bounding box of approx 300km x 300km. In this case it takes ~120 minutes to do the warp. If I reduce the coastline polygon to the relevant area the running time is ~14 minutes.

This approach could be incorporated in GDAL cutline algorithm by using something like (in pseudo code):

env = envelope(raster)
expand(env, blending distance)
reduced_cut_poly = intersection(env, cut_poly)

...and the using the reduced_cut_poly instead of the original polygon.

This would dramatically decrease the running time of the case with large and complex polygon and it would hardly affect the running time of other cases (assuming that GEOS has reasonable shortcut tests built in).

Change History (10)

comment:1 by asgerpetersen, 15 years ago

Component: defaultAlgorithms

Looked at the coastline again, and the geometry that is actually used for cutting has a bounding box more like 30km x 30km. So the cut polygon doesn't have to be extremely larger than the raster to make the above suggested change relevant.

comment:2 by warmerdam, 15 years ago

Keywords: cutline gdalwarp added
Status: newassigned

comment:3 by warmerdam, 15 years ago

Milestone: 1.7.0
Version: unspecified1.6.0

I have implemented this in trunk (r15946) and it seems to work though I haven't evaluated the performance implications.

comment:4 by asgerpetersen, 15 years ago

Hi Frank,

I have another suggestion for a performance improvement which is related to this ticket:

When testing for each pixel if it falls outside the cutline bbox it would be smart to use the bbox of the intersected poLines instead of hPolygon.

comment:5 by warmerdam, 15 years ago

I have reviewed the current code as to the best of my understanding the envelope used for per-pixel tests in BlendMaskGenerator() is computed from the clipped set of lines.

comment:6 by asgerpetersen, 15 years ago

Ok, I am not a shark in C, but the envelope used seems calculated in line 107 by the call "OGR_G_GetEnvelope( hPolygon, &sEnvelope );" And as far as I can see hPolygon is the original cutline polygon. I think it should be the envelope of poLines.

comment:7 by warmerdam, 15 years ago

You are completely correct ... I conflated line 107 and 106 and somehow thought the envelope calculation was on poLines. I will correct...

comment:8 by Jukka Rahkonen, 9 years ago

Cc: Kurt Schwehr added

It looks like the suggested improvement has not done yet. I mean

Ok, I am not a shark in C, but the envelope used seems calculated 
in line 107 by the call "OGR_G_GetEnvelope( hPolygon, &sEnvelope );"
 And as far as I can see hPolygon is the original cutline polygon.
 I think it should be the envelope of poLines. 

CC: goatbar, you have done commits into /trunk/gdal/alg/gdalcutline.cpp so I thing you understand something about it. What would you say about "envelope of poLines"?

comment:9 by Even Rouault, 9 years ago

Milestone: 1.8.1

Removing obsolete milestone

comment:10 by Even Rouault, 5 years ago

Milestone: closed_because_of_github_migration
Resolution: wontfix
Status: assignedclosed

This ticket has been automatically closed because Trac is no longer used for GDAL bug tracking, since the project has migrated to GitHub. If you believe this ticket is still valid, you may file it to https://github.com/OSGeo/gdal/issues if it is not already reported there.

Note: See TracTickets for help on using tickets.