pingmapper 5.0.16__tar.gz → 5.0.18__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.16 → pingmapper-5.0.18}/PKG-INFO +1 -1
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/class_portstarObj.py +2 -2
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/main_readFiles.py +9 -9
- pingmapper-5.0.18/pingmapper/version.py +1 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper.egg-info/PKG-INFO +1 -1
- pingmapper-5.0.16/pingmapper/version.py +0 -1
- {pingmapper-5.0.16 → pingmapper-5.0.18}/LICENSE +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/README.md +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/__init__.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/__main__.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/class_mapSubstrateObj.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/class_rectObj.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/class_sonObj.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/class_sonObj_nadirgaptest.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/default_params.json +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/funcs_common.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/funcs_model.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/funcs_rectify.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/gui_main.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/main_mapSubstrate.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/main_rectify.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/test_PINGMapper.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper/test_time.py +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper.egg-info/SOURCES.txt +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper.egg-info/dependency_links.txt +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper.egg-info/requires.txt +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/pingmapper.egg-info/top_level.txt +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/setup.cfg +0 -0
- {pingmapper-5.0.16 → pingmapper-5.0.18}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.18
|
|
4
4
|
Summary: Open-source interface for processing recreation-grade side scan sonar datasets and reproducibly mapping benthic habitat
|
|
5
5
|
Author: Cameron Bodine, Daniel Buscombe
|
|
6
6
|
Author-email: bodine.cs@gmail.email
|
|
@@ -1605,8 +1605,8 @@ class portstarObj(object):
|
|
|
1605
1605
|
starDF['dep_m_adjBy'] = str(adjDep / starDF['pixM']) + ' pixels'
|
|
1606
1606
|
|
|
1607
1607
|
# Interpolate over nan's (and set zeros to nan)
|
|
1608
|
-
portDep = portDF['dep_m'].to_numpy()
|
|
1609
|
-
starDep = starDF['dep_m'].to_numpy()
|
|
1608
|
+
portDep = portDF['dep_m'].to_numpy(copy=True)
|
|
1609
|
+
starDep = starDF['dep_m'].to_numpy(copy=True)
|
|
1610
1610
|
|
|
1611
1611
|
portDep[portDep == 0] = np.nan
|
|
1612
1612
|
starDep[starDep == 0] = np.nan
|
|
@@ -549,14 +549,14 @@ def read_master_func(logfilename='',
|
|
|
549
549
|
del son
|
|
550
550
|
|
|
551
551
|
|
|
552
|
-
# If Onix, need to store self._trans in object
|
|
553
|
-
if sonObjs[0].isOnix:
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
552
|
+
# # If Onix, need to store self._trans in object
|
|
553
|
+
# if sonObjs[0].isOnix:
|
|
554
|
+
# for son in sonObjs:
|
|
555
|
+
# son._loadSonMeta()
|
|
556
|
+
# utm_e=son.sonMetaDF.iloc[0]['utm_e']
|
|
557
|
+
# utm_n=son.sonMetaDF.iloc[0]['utm_n']
|
|
558
|
+
# son._getEPSG(utm_e, utm_n)
|
|
559
|
+
# del son
|
|
560
560
|
|
|
561
561
|
|
|
562
562
|
else:
|
|
@@ -1090,7 +1090,7 @@ def read_master_func(logfilename='',
|
|
|
1090
1090
|
sonDF['dep_m_smth'] = False
|
|
1091
1091
|
sonDF['dep_m_adjBy'] = adjDep
|
|
1092
1092
|
|
|
1093
|
-
dep = sonDF['inst_dep_m']
|
|
1093
|
+
dep = sonDF['inst_dep_m'].to_numpy(copy=True)
|
|
1094
1094
|
|
|
1095
1095
|
if smthDep:
|
|
1096
1096
|
dep = savgol_filter(dep, 51, 3)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '5.0.18'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.18
|
|
4
4
|
Summary: Open-source interface for processing recreation-grade side scan sonar datasets and reproducibly mapping benthic habitat
|
|
5
5
|
Author: Cameron Bodine, Daniel Buscombe
|
|
6
6
|
Author-email: bodine.cs@gmail.email
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '5.0.16'
|
|
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
|
|
File without changes
|