Skip to content

Commit

Permalink
Make pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Mar 22, 2024
1 parent acc1088 commit bdf6c3f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion bmi_geotiff/bmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@


class BmiGeoTiff(Bmi):

"""BMI-mediated access to data and metadata in a GeoTIFF file."""

_name = "bmi-geotiff"
Expand Down
2 changes: 1 addition & 1 deletion bmi_geotiff/io.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""Access GeoTIFF files."""

import rioxarray
from rasterio.crs import CRS


class GeoTiff:

"""Access data and metadata in a GeoTIFF file."""

def __init__(self, filename=None):
Expand Down
1 change: 1 addition & 0 deletions examples/example-pan.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
The data used are band 1 of Landsat 7 ETM scene LE71030642021102ASA00.
"""

import matplotlib.pyplot as plt

from bmi_geotiff import GeoTiff
Expand Down
1 change: 1 addition & 0 deletions examples/example-rgb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
The example is adapted from http://xarray.pydata.org/en/stable/examples/visualization_gallery.html#imshow()-and-rasterio-map-projections,
and it uses the sample GeoTIFF image "RGB.byte.tif" from the rasterio project.
"""

import cartopy.crs as ccrs
import matplotlib.pyplot as plt

Expand Down
1 change: 1 addition & 0 deletions tests/test_io.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the bmi_geotiff.io module"""

from pathlib import Path

import pytest
Expand Down

0 comments on commit bdf6c3f

Please sign in to comment.