Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gms_preprocessing
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
29
Issues
29
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
geomultisens
gms_preprocessing
Commits
de874973
Commit
de874973
authored
Nov 27, 2020
by
Daniel Scheffler
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'enhancement/improve_docs'
parents
8544840d
4ac54dc7
Pipeline
#16133
failed with stages
in 20 minutes
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
HISTORY.rst
HISTORY.rst
+3
-1
MANIFEST.in
MANIFEST.in
+1
-0
gms_preprocessing/misc/locks.py
gms_preprocessing/misc/locks.py
+4
-1
setup.py
setup.py
+2
-1
No files found.
HISTORY.rst
View file @
de874973
...
...
@@ -17,10 +17,12 @@ History
* Fixed some type hinting issues.
* GMS_object.get_subset_obj() now returns None in case the subset contains no data at all.
* Added missing MemoryReserver.logger.close() call.
* Fixed an issue causing the L2B/L2C output to contain
wrong spectral bands in case the spectral homogenization is
* Fixed an issue causing the L2B/L2C output to contain wrong spectral bands in case the spectral homogenization is
executed and sort_by_cwl is set to True (due to a wrong wavelength order if no_pan=False).
* SpatialIndexMediator.getFullSceneDataForDataset() now retries the query 10 times in case of a struct.error
(relates to issue #103).
* Fixed issue #105 ('FileNotFoundError: Options file not found ...' when running run_gms.py -h after installing
gms_preprocessing from pip or conda-forge.)
0.18.11 (2020-11-03)
...
...
MANIFEST.in
View file @
de874973
...
...
@@ -3,6 +3,7 @@ include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE
include README.rst
include options/options_default.json
exclude travis_pypi_setup.py
recursive-exclude .github *
...
...
gms_preprocessing/misc/locks.py
View file @
de874973
...
...
@@ -320,7 +320,10 @@ class MemoryReserver(object):
def
__exit__
(
self
,
exc_type
,
exc_val
,
exc_tb
):
self
.
release
()
self
.
logger
.
close
()
if
not
self
.
disabled
:
self
.
logger
.
close
()
return
True
if
exc_type
is
None
else
False
...
...
setup.py
View file @
de874973
...
...
@@ -117,7 +117,8 @@ setup(
license
=
"GPL-3.0-or-later"
,
long_description
=
readme
,
name
=
'gms_preprocessing'
,
package_data
=
{
"gms_preprocessing"
:
[
"database/**/**/*"
]},
package_data
=
{
"gms_preprocessing"
:
[
"database/**/**/*"
,
"options/options_default.json"
]},
package_dir
=
{
'gms_preprocessing'
:
'gms_preprocessing'
},
packages
=
find_packages
(
exclude
=
[
'.github'
,
'benchmarks'
,
'docs'
,
'examples'
,
'tests*'
]),
scripts
=
[
"bin/run_gms.py"
,
"bin/run_gms.sh"
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment