pingmapper 4.2.8__tar.gz → 4.2.9__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.8 → pingmapper-4.2.9}/PKG-INFO +1 -1
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/class_rectObj.py +1 -1
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/main_readFiles.py +1 -1
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/main_rectify.py +1 -1
- pingmapper-4.2.9/pingmapper/version.py +1 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper.egg-info/PKG-INFO +1 -1
- pingmapper-4.2.8/pingmapper/version.py +0 -1
- {pingmapper-4.2.8 → pingmapper-4.2.9}/LICENSE +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/README.md +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/__init__.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/__main__.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/class_mapSubstrateObj.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/class_portstarObj.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/class_sonObj.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/default_params.json +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/funcs_common.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/funcs_model.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/funcs_rectify.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/gui_main.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/main_mapSubstrate.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/test_PINGMapper.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper/test_time.py +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper.egg-info/SOURCES.txt +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper.egg-info/dependency_links.txt +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper.egg-info/requires.txt +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/pingmapper.egg-info/top_level.txt +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/setup.cfg +0 -0
- {pingmapper-4.2.8 → pingmapper-4.2.9}/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.9
|
|
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
|
|
@@ -617,7 +617,7 @@ class rectObj(sonObj):
|
|
|
617
617
|
if cog:
|
|
618
618
|
self._interpRangeCoords(filt)
|
|
619
619
|
else:
|
|
620
|
-
sDF = sDF[['record_num', 'chunk_id', 'ping_cnt', 'time_s', 'lons', 'lats', 'utm_es', 'utm_ns', 'instr_heading', 'cog', 'dep_m', 'range', 'range_lon', 'range_lat', 'range_e', 'range_n', ping_bearing]].copy()
|
|
620
|
+
sDF = sDF[['record_num', 'chunk_id', 'ping_cnt', 'time_s', 'lons', 'lats', 'utm_es', 'utm_ns', 'instr_heading', 'cog', 'dep_m', 'range', 'range_lon', 'range_lat', 'range_e', 'range_n', ping_bearing, 'transect']].copy()
|
|
621
621
|
sDF.rename(columns={'lons': 'trk_lons', 'lats': 'trk_lats', 'utm_es': 'trk_utm_es', 'utm_ns': 'trk_utm_ns', 'cog': 'trk_cog', 'range_lat':'range_lats', 'range_lon':'range_lons', 'range_e':'range_es', 'range_n':'range_ns'}, inplace=True)
|
|
622
622
|
sDF['chunk_id_2'] = sDF.index.astype(int)
|
|
623
623
|
|
|
@@ -263,7 +263,7 @@ def rectify_master_func(logfilename='',
|
|
|
263
263
|
############################################################################
|
|
264
264
|
|
|
265
265
|
cog=True
|
|
266
|
-
if
|
|
266
|
+
if rectMethod != 'COG':
|
|
267
267
|
cog=False
|
|
268
268
|
|
|
269
269
|
smthTrkFilenames = smoothTrackline(projDir=projDir, x_offset=x_offset, y_offset=y_offset, nchunk=nchunk, cog=cog, threadCnt=threadCnt)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '4.2.9'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pingmapper
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.9
|
|
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.8'
|
|
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
|