Skip to content

Fix python tools #318

Description

@victorccampos

Minor change in "plotband.py"

Currently in plotband.py the image saving is:

if save_png:
        plt.savefig("./band.png")

And this leads to a incomplete band (y-axis):
Image

Adding bbox_inches='tight' prevents this issue:

if save_png:
        plt.savefig("./band.png", bbox_inches="tight")
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions