Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8.1k
Closed
Milestone
Description
Problem
To get contour labelling working with its special transforms, Cartopy has aworkaround where it replaces all the paths on theContourSet with transformed versions. This currently looks like
paths=cs.get_paths()paths[:]=transformed_paths
which doesn’t smell very good.
Proposed solution
The above would smell better as
cs.set_paths(transformed_paths)