Skip to content

Commit

Permalink
remove completed to dos
Browse files Browse the repository at this point in the history
  • Loading branch information
dugalh committed Feb 22, 2024
1 parent ced600f commit 4aed31d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion homonim/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ def _update_existing_keys(default_dict: Dict, **kwargs) -> Dict:

def _configure_logging(verbosity: int):
"""Configure python logging level."""
# TODO: change logger.warning to warnings.warn where a user may want to respond to a warning.
# TODO: lose PlainInfoFormatter if not needed

def showwarning(message, category, filename, lineno, file=None, line=None):
Expand Down
3 changes: 1 addition & 2 deletions homonim/fuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,9 @@ def create_out_profile(
dict
Output image profile.
"""
# TODO: add compress_overview='auto' when gdal >=3.6
creation_options = creation_options or dict(
tiled=True, blockxsize=512, blockysize=512, compress='deflate', interleave='band', photometric='minisblack',
bigtiff='if_safer',
bigtiff='if_safer'
)
return dict(driver=driver, dtype=dtype, nodata=nodata, creation_options=creation_options)

Expand Down

0 comments on commit 4aed31d

Please sign in to comment.