Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data import enhancements #757

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
032067a
Fix call to geos validity check
gkahiu Dec 13, 2022
faa51e0
Add RegionSelector widget
gkahiu Dec 17, 2022
257acc6
Move results to job's root directory.
gkahiu Dec 20, 2022
55b706e
Copy files instead of moving to address temp files.
gkahiu Dec 21, 2022
92f098e
Update tolerance to perform check based on geometry area.
gkahiu Dec 21, 2022
9147b7b
Refactor soil organic carbon dialog.
gkahiu Dec 21, 2022
749a32b
Refactor land productivity import dialog.
gkahiu Dec 21, 2022
46fddbd
Enable save/restore LC aggregation.
gkahiu Dec 22, 2022
88c6892
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 22, 2022
af6c1dd
Fix incorrect refactoring.
gkahiu Dec 22, 2022
46cb3c9
Merge branch 'data_import_enhancements' of https://github.com/gkahiu/…
gkahiu Dec 22, 2022
13c0d3f
Add log messages in func for getting admin geometry.
gkahiu Dec 22, 2022
c46d569
Update uris for raster results in job manager.
gkahiu Dec 22, 2022
145f70e
Use variable containing file location.
gkahiu Dec 22, 2022
7e63936
Comment change.
gkahiu Dec 22, 2022
3037b3b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 22, 2022
745bbc6
Fix output of main uri for RasterResults to work for vrt or tiff
azvoleff Dec 23, 2022
d2e331c
Explicitly set nodata for VRT.
gkahiu Dec 26, 2022
8f1d6e9
Refactor VRT args.
gkahiu Dec 26, 2022
8c27576
Explicitly set source/destination nodata values.
gkahiu Dec 28, 2022
0fd1243
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 28, 2022
056c93b
Fix code to get city from cities.json
azvoleff Jan 9, 2023
c765fd5
Add percentage overlap to message bar
azvoleff Jan 9, 2023
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
4 changes: 4 additions & 0 deletions LDMP/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ class Setting(enum.Enum):
LC_LAST_DIR = "land_cover/last_dir"
LC_IPCC_NESTING = "land_cover/ipcc_nesting"
LC_ESA_NESTING = "land_cover/esa_nesting"
LC_CUSTOM_IMPORT_NESTING = "land_cover/custom_import_nesting"
IMPORT_AREA_TOLERANCE = "import/extent_tolerance"


class SettingsManager:
Expand Down Expand Up @@ -126,6 +128,8 @@ class SettingsManager:
Setting.LC_LAST_DIR: "",
Setting.LC_IPCC_NESTING: "",
Setting.LC_ESA_NESTING: "",
Setting.LC_CUSTOM_IMPORT_NESTING: "",
Setting.IMPORT_AREA_TOLERANCE: 0.95,
}

def __init__(self):
Expand Down
Loading