pingmapper 4.2.9__tar.gz → 4.2.10__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-4.2.9 → pingmapper-4.2.10}/PKG-INFO +1 -1
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/gui_main.py +1 -1
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/main_readFiles.py +6 -1
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/main_rectify.py +4 -0
- pingmapper-4.2.10/pingmapper/version.py +1 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper.egg-info/PKG-INFO +1 -1
- pingmapper-4.2.9/pingmapper/version.py +0 -1
- {pingmapper-4.2.9 → pingmapper-4.2.10}/LICENSE +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/README.md +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/__init__.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/__main__.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/class_mapSubstrateObj.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/class_portstarObj.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/class_rectObj.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/class_sonObj.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/default_params.json +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/funcs_common.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/funcs_model.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/funcs_rectify.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/main_mapSubstrate.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/test_PINGMapper.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper/test_time.py +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper.egg-info/SOURCES.txt +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper.egg-info/dependency_links.txt +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper.egg-info/requires.txt +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/pingmapper.egg-info/top_level.txt +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/setup.cfg +0 -0
- {pingmapper-4.2.9 → pingmapper-4.2.10}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.10
|
|
4
4
|
Summary: Open-source interface for processing recreation-grade side scan sonar datasets and reproducibly mapping benthic habitat
|
|
5
5
|
Author: Cameron Bodine
|
|
6
6
|
Author-email: bodine.cs@gmail.email
|
|
@@ -73,7 +73,7 @@ def gui(batch: bool):
|
|
|
73
73
|
text_input = sg.Text('Recording to Process')
|
|
74
74
|
# in_input = sg.In(key='inFile', size=(80,1))
|
|
75
75
|
in_input = sg.In(key='inFile', size=(80,1), default_text=default_params['inFile'])
|
|
76
|
-
browse_input = sg.FileBrowse(file_types=(("Sonar File", "*.DAT *.sl2 *.sl3") ), initial_folder=os.path.dirname(default_params['inFile']))
|
|
76
|
+
browse_input = sg.FileBrowse(file_types=(("Sonar File", "*.DAT *.sl2 *.sl3 *.svlog") ), initial_folder=os.path.dirname(default_params['inFile']))
|
|
77
77
|
|
|
78
78
|
# Add to layout
|
|
79
79
|
layout.append([text_io])
|
|
@@ -46,7 +46,7 @@ from scipy.signal import savgol_filter
|
|
|
46
46
|
|
|
47
47
|
# sys.path.insert(0, r'C:\Users\cbodine\PythonRepos\PINGVerter')
|
|
48
48
|
|
|
49
|
-
from pingverter import hum2pingmapper, low2pingmapper
|
|
49
|
+
from pingverter import hum2pingmapper, low2pingmapper, cerul2pingmapper
|
|
50
50
|
|
|
51
51
|
import cv2
|
|
52
52
|
|
|
@@ -315,6 +315,11 @@ def read_master_func(logfilename='',
|
|
|
315
315
|
elif file_type == '.sl2' or file_type == '.sl3':
|
|
316
316
|
sonar_obj = low2pingmapper(inFile, projDir, nchunk, tempC, exportUnknown)
|
|
317
317
|
|
|
318
|
+
# Prepare Cerulean file for PINGMapper
|
|
319
|
+
elif file_type == '.svlog':
|
|
320
|
+
sonar_obj = cerul2pingmapper(inFile, projDir, nchunk, tempC, exportUnknown)
|
|
321
|
+
detectDep = 1 # No depth in cerulean files, so set to Zheng et al. 2021
|
|
322
|
+
|
|
318
323
|
####################
|
|
319
324
|
# Create son objects
|
|
320
325
|
####################
|
|
@@ -262,6 +262,10 @@ def rectify_master_func(logfilename='',
|
|
|
262
262
|
# Smooth Trackline #
|
|
263
263
|
############################################################################
|
|
264
264
|
|
|
265
|
+
# Must use COG for rubber sheeting
|
|
266
|
+
if rubberSheeting:
|
|
267
|
+
rectMethod = 'COG'
|
|
268
|
+
|
|
265
269
|
cog=True
|
|
266
270
|
if rectMethod != 'COG':
|
|
267
271
|
cog=False
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '4.2.10'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.10
|
|
4
4
|
Summary: Open-source interface for processing recreation-grade side scan sonar datasets and reproducibly mapping benthic habitat
|
|
5
5
|
Author: Cameron Bodine
|
|
6
6
|
Author-email: bodine.cs@gmail.email
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '4.2.9'
|
|
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
|