Tags: Ultraplot/UltraPlot
Tags
Fix choropleth horizontal line artifacts on projected maps (#668) * Fix choropleth horizontal line artifacts on projected maps Use Cartopy's project_geometry() instead of transform_points() for choropleth polygon projection. transform_points() projects vertices independently without geometric awareness, so polygons crossing the antimeridian (e.g. Russia) produce path segments that jump across the entire map, rendering as visible horizontal lines. project_geometry() properly splits and clips polygons at projection boundaries before converting to matplotlib paths, eliminating the artifacts on all projections (Robinson, Mercator, Mollweide, etc.). * Black
Fix contour level color mapping with explicit limits (#599) * Fix contour level color mapping with explicit limits * Update ultraplot/axes/plot.py Co-authored-by: Copilot <[email protected]> * Fix `_parse_level_norm` docstring to reflect conditional return type (#600) * Initial plan * Update _parse_level_norm docstring Returns section to reflect possible return types Co-authored-by: cvanelteren <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: Casper van Elteren <[email protected]> Co-authored-by: cvanelteren <[email protected]> * Scope explicit contour limits to line contours * Pass vmin/vmax through automatic level generation * Restore default tricontour discrete mapping * Format contour norm routing changes * Clarify contour norm routing docs * Refactor contour norm routing flow * Refactor contour norm routing flags --------- Co-authored-by: Copilot <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: cvanelteren <[email protected]>
PreviousNext