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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Add support for Python 3.14, remove support for Python 3.10
- Support HCAT mapping CSV files without crop_code
- Split Germany BB and NDS in block dataset and crop fields
- Fix the column additions of the determination fields in the AI4SF converter
- Add HCAT to datasets where possible
- Updated years & variants for at_crop, be_vlg, es_an, es_cl, es_pv, ie, pt, se
- Extend create_stac, include include fiboa data
Expand Down
4 changes: 2 additions & 2 deletions fiboa_cli/datasets/ai4sf.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ class Converter(FiboaBaseConverter):

# Add columns with constant values.
# The key is the column name, the value is a constant value that's used for all rows.
add_columns = {
column_additions = {
"determination:datetime": "2021-08-01T00:00:00Z",
"determination_method": "auto-imagery",
"determination:method": "auto-imagery",
}

def migrate(self, gdf):
Expand Down
Loading