Skip to content

Commit 84b2365

Browse files
version 0.7
1 parent a4f0785 commit 84b2365

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

docs/changelog.rst

+35
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,38 @@ Python package integrity
4949
************************
5050
- add trove classifiers for supported operating systems and MIT license for easier online search
5151
- exchange http with https for all URLs that support it
52+
53+
0.7 / 2019-01-03
54+
----------------
55+
56+
several changes to the functioning of the Gamma command API
57+
58+
GAMMA API
59+
*********
60+
61+
processing
62+
++++++++++
63+
- :func:`pyroSAR.gamma.geocode`:
64+
65+
* optionally write all Gamma commands to shellscript
66+
* newly introduced choice of normalization method
67+
* changed normalization default approach
68+
69+
- :func:`pyroSAR.gamma.process`:
70+
71+
* new parameter `logfile` to specify a logfile instead of just a directory with automated file naming
72+
* new parameter `shellscript` to write the executed command to a shell script protocol
73+
74+
command parser
75+
++++++++++++++
76+
- add parameters `outdir` and `shellscript` to parsed functions
77+
- extensive improvement to accurately parse more commands
78+
- add parameter `inlist` to some commands, which require interactive input via `stdin`
79+
80+
general
81+
+++++++
82+
- several bug fixes
83+
- extended documentation
84+
- make use of parsed command functions internally
85+
- enable passing `logpath`, `outdir` and `shellscript` to all parsed functions via additional parameters for other
86+
convenience functions

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
# built documents.
3131
#
3232
# The short X.Y version.
33-
version = '0.6'
33+
version = '0.7'
3434
# The full version, including alpha/beta/rc tags.
35-
release = '0.6'
35+
release = '0.7'
3636

3737
autodoc_mock_imports = ['osgeo', 'spatialist']
3838

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(name='pyroSAR',
2020
packages=find_packages(),
2121
include_package_data=True,
22-
version='0.6',
22+
version='0.7',
2323
description='a framework for large-scale SAR satellite data processing',
2424
classifiers=[
2525
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)