Skip to content

Commit

Permalink
Change default plot interpolation to avoid large PDF sizes (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet authored Dec 17, 2024
1 parent 04b170a commit 5c68af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geoutils/raster/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -2795,7 +2795,7 @@ def plot(

# Set matplotlib interpolation to None by default, to avoid spreading gaps in plots
if "interpolation" not in kwargs.keys():
kwargs.update({"interpolation": "None"})
kwargs.update({"interpolation": None})

# Check if specific band selected, or take all
# rshow takes care of image dimensions
Expand Down

0 comments on commit 5c68af7

Please sign in to comment.