Skip to content

Commit

Permalink
correct geotiff reader dependencies, and standardize noqa comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ludwigVonKoopa committed Jun 18, 2024
1 parent 580b741 commit 76e6b82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ gms5-vissr_l1b = ["numba"]
# Writers:
cf = ["h5netcdf >= 0.7.3"]
awips_tiled = ["netCDF4 >= 1.1.8"]
geotiff = ["rasterio", "rioxarray", "trollimage[geotiff]"]
geotiff = ["rasterio", "trollimage[geotiff]"]
ninjo = ["pyninjotiff", "pint"]
units = ["pint-xarray"]
# Composites/Modifiers:
Expand Down
2 changes: 1 addition & 1 deletion satpy/readers/generic_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import dask.array as da
import numpy as np
import rasterio
import rioxarray # noqa: F401, need by xarray with the engine rasterio
import rioxarray # noqa: F401 # need by xarray with the engine rasterio
import xarray as xr
from pyresample import utils

Expand Down
2 changes: 1 addition & 1 deletion satpy/readers/sar_c_safe.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import defusedxml.ElementTree as ET
import numpy as np
import rasterio
import rioxarray # noqa F401 : xarray open_dataset use engine rasterio, which use rioxarray
import rioxarray # noqa F401 # xarray open_dataset use engine rasterio, which use rioxarray
import xarray as xr
from dask import array as da
from geotiepoints.geointerpolator import lonlat2xyz, xyz2lonlat
Expand Down

0 comments on commit 76e6b82

Please sign in to comment.