pingmapper 5.0.3__tar.gz → 5.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pingmapper-5.0.3 → pingmapper-5.0.5}/PKG-INFO +3 -3
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/class_portstarObj.py +2 -2
- pingmapper-5.0.5/pingmapper/version.py +1 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper.egg-info/PKG-INFO +3 -3
- {pingmapper-5.0.3 → pingmapper-5.0.5}/setup.py +2 -2
- pingmapper-5.0.3/pingmapper/version.py +0 -1
- {pingmapper-5.0.3 → pingmapper-5.0.5}/LICENSE +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/README.md +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/__init__.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/__main__.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/class_mapSubstrateObj.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/class_rectObj.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/class_sonObj.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/default_params.json +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/funcs_common.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/funcs_model.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/funcs_rectify.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/gui_main.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/main_mapSubstrate.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/main_readFiles.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/main_rectify.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/test_PINGMapper.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper/test_time.py +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper.egg-info/SOURCES.txt +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper.egg-info/dependency_links.txt +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper.egg-info/requires.txt +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/pingmapper.egg-info/top_level.txt +0 -0
- {pingmapper-5.0.3 → pingmapper-5.0.5}/setup.cfg +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.5
|
|
4
4
|
Summary: Open-source interface for processing recreation-grade side scan sonar datasets and reproducibly mapping benthic habitat
|
|
5
|
-
Author: Cameron Bodine
|
|
5
|
+
Author: Cameron Bodine, Daniel Buscombe
|
|
6
6
|
Author-email: bodine.cs@gmail.email
|
|
7
7
|
Project-URL: Issues, https://github.com/CameronBodine/PINGMapper/issues
|
|
8
8
|
Project-URL: GitHub, https://github.com/CameronBodine/PINGMapper
|
|
9
9
|
Project-URL: Homepage, https://cameronbodine.github.io/PINGMapper/
|
|
10
10
|
Keywords: pingmapper,sonar,ecology,remotesensing,sidescan,sidescan-sonar,aquatic,humminbird,lowrance,gis,oceanography,limnology
|
|
11
|
-
Classifier: Development Status ::
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
@@ -2633,8 +2633,8 @@ class portstarObj(object):
|
|
|
2633
2633
|
inDirPort = os.path.join(self.port.projDir, self.port.beamName, 'rect_wcr')
|
|
2634
2634
|
inDirStar = os.path.join(self.star.projDir, self.star.beamName, 'rect_wcr')
|
|
2635
2635
|
else:
|
|
2636
|
-
inDirPort = os.path.join(self.port.projDir, self.beamName, 'rect_wcp')
|
|
2637
|
-
inDirStar = os.path.join(self.star.projDir, self.beamName, 'rect_wcp')
|
|
2636
|
+
inDirPort = os.path.join(self.port.projDir, self.port.beamName, 'rect_wcp')
|
|
2637
|
+
inDirStar = os.path.join(self.star.projDir, self.star.beamName, 'rect_wcp')
|
|
2638
2638
|
|
|
2639
2639
|
portFiles = glob(os.path.join(inDirPort, '*.tif'))
|
|
2640
2640
|
starFiles = glob(os.path.join(inDirStar, '*.tif'))
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '5.0.5'
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.5
|
|
4
4
|
Summary: Open-source interface for processing recreation-grade side scan sonar datasets and reproducibly mapping benthic habitat
|
|
5
|
-
Author: Cameron Bodine
|
|
5
|
+
Author: Cameron Bodine, Daniel Buscombe
|
|
6
6
|
Author-email: bodine.cs@gmail.email
|
|
7
7
|
Project-URL: Issues, https://github.com/CameronBodine/PINGMapper/issues
|
|
8
8
|
Project-URL: GitHub, https://github.com/CameronBodine/PINGMapper
|
|
9
9
|
Project-URL: Homepage, https://cameronbodine.github.io/PINGMapper/
|
|
10
10
|
Keywords: pingmapper,sonar,ecology,remotesensing,sidescan,sidescan-sonar,aquatic,humminbird,lowrance,gis,oceanography,limnology
|
|
11
|
-
Classifier: Development Status ::
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
@@ -9,7 +9,7 @@ exec(open('pingmapper/version.py').read())
|
|
|
9
9
|
setup(
|
|
10
10
|
name="pingmapper",
|
|
11
11
|
version=__version__,
|
|
12
|
-
author="Cameron Bodine",
|
|
12
|
+
author="Cameron Bodine, Daniel Buscombe",
|
|
13
13
|
author_email="bodine.cs@gmail.email",
|
|
14
14
|
description=DESCRIPTION,
|
|
15
15
|
long_description=LONG_DESCRIPTION,
|
|
@@ -17,7 +17,7 @@ setup(
|
|
|
17
17
|
packages=find_packages(),
|
|
18
18
|
data_files=[("pingmapper_config", ["pingmapper/default_params.json"])],
|
|
19
19
|
classifiers=[
|
|
20
|
-
"Development Status ::
|
|
20
|
+
"Development Status :: 5 - Production/Stable",
|
|
21
21
|
"Programming Language :: Python :: 3",
|
|
22
22
|
"License :: OSI Approved :: MIT License",
|
|
23
23
|
"Operating System :: OS Independent",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '5.0.3'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|