Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ venv.bak/
.mypy_cache/
.dmypy.json
dmypy.json

.vscode/
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ HyBIG follows semantic versioning. All notable changes to this project will be
documented in this file. The format is based on [Keep a
Changelog](http://keepachangelog.com/en/1.0.0/).

## [unreleased]

### Changed

* Refactored code be more memory efficient, reducing peak memory usage when processing large granules by about 90% at no performance hit. This is accomplished by fundamentally changing the way data is read, doing away with rioxarray and instead using rasterio directly. The DatasetReader allows for windowed reads into the source data, at the expense of having to reimplement the mask_and_scale functionality that is provided by rioxarray.
* Minor changes related to resolving tech debt and code quality improvements throughout.

## [v2.5.1] - 2026-01-06

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docker/service_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.1
2.6.0
Loading