-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from KhaosResearch/v1.2
v1.2 - Now seasons are not hardcoded, instead defined in a json file referenced in SEASONS_FILE environment variable. - It is possible now to use any number of seasons or any date interval for using landcoverpy - Added seasons example files - Improved RAM usage when creating the tile dataframe, now pd.concat is not used. - Beta windowing read-write in prediction is now available! Right now it has only been tested splitting the rasters in (5,5) slices, since there are problems with windowing different spatial resolution images, i.e. 20m 10m sentinel2-bands. - An example for calling the predict workflow using windowing is `workflow(execution_mode=ExecutionMode.LAND_COVER_PREDICTION, window_slices=(5,5))`. This reduces maximum RAM usage from 64GB to 8GB. - It is pending to improve the windowing allowing different window slices OR allow using use_block_windows. - Workflow main script splitted in train predict to improve readibility
- Loading branch information
Showing
16 changed files
with
802 additions
and
1,279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"april": { | ||
"start": "2021-04-01", | ||
"end": "2021-04-30" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"spring": { | ||
"start": "2021-03-01", | ||
"end": "2021-04-30" | ||
}, | ||
"summer": { | ||
"start": "2021-06-01", | ||
"end": "2021-07-31" | ||
}, | ||
"autumn": { | ||
"start": "2021-10-01", | ||
"end": "2021-11-30" | ||
} | ||
} |
Oops, something went wrong.