pingmapper 4.2.7__tar.gz → 4.2.8__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.
Files changed (28) hide show
  1. {pingmapper-4.2.7 → pingmapper-4.2.8}/PKG-INFO +1 -1
  2. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/main_readFiles.py +9 -3
  3. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/main_rectify.py +4 -0
  4. pingmapper-4.2.8/pingmapper/version.py +1 -0
  5. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper.egg-info/PKG-INFO +1 -1
  6. pingmapper-4.2.7/pingmapper/version.py +0 -1
  7. {pingmapper-4.2.7 → pingmapper-4.2.8}/LICENSE +0 -0
  8. {pingmapper-4.2.7 → pingmapper-4.2.8}/README.md +0 -0
  9. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/__init__.py +0 -0
  10. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/__main__.py +0 -0
  11. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/class_mapSubstrateObj.py +0 -0
  12. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/class_portstarObj.py +0 -0
  13. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/class_rectObj.py +0 -0
  14. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/class_sonObj.py +0 -0
  15. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/default_params.json +0 -0
  16. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/funcs_common.py +0 -0
  17. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/funcs_model.py +0 -0
  18. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/funcs_rectify.py +0 -0
  19. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/gui_main.py +0 -0
  20. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/main_mapSubstrate.py +0 -0
  21. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/test_PINGMapper.py +0 -0
  22. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper/test_time.py +0 -0
  23. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper.egg-info/SOURCES.txt +0 -0
  24. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper.egg-info/dependency_links.txt +0 -0
  25. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper.egg-info/requires.txt +0 -0
  26. {pingmapper-4.2.7 → pingmapper-4.2.8}/pingmapper.egg-info/top_level.txt +0 -0
  27. {pingmapper-4.2.7 → pingmapper-4.2.8}/setup.cfg +0 -0
  28. {pingmapper-4.2.7 → pingmapper-4.2.8}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pingmapper
3
- Version: 4.2.7
3
+ Version: 4.2.8
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
@@ -75,7 +75,7 @@ def read_master_func(logfilename='',
75
75
  pix_res_map=0,
76
76
  x_offset=0,
77
77
  y_offset=0,
78
- tileFile=False,
78
+ tileFile='.png',
79
79
  egn=False,
80
80
  egn_stretch=0,
81
81
  egn_stretch_factor=1,
@@ -83,7 +83,7 @@ def read_master_func(logfilename='',
83
83
  wcm=False,
84
84
  wcr=False,
85
85
  wco=False,
86
- sonogram_colorMap='Greys',
86
+ sonogram_colorMap='Greys_r',
87
87
  mask_shdw=False,
88
88
  mask_wc=False,
89
89
  spdCor=False,
@@ -356,7 +356,13 @@ def read_master_func(logfilename='',
356
356
 
357
357
  son.sonMetaFile = meta['metaCSV']
358
358
 
359
- sonObjs.append(son)
359
+ if sonFiles:
360
+ if son.beamName in sonFiles:
361
+ sonObjs.append(son)
362
+ else:
363
+ pass
364
+ else:
365
+ sonObjs.append(son)
360
366
 
361
367
  ####
362
368
  # OLD
@@ -262,6 +262,10 @@ def rectify_master_func(logfilename='',
262
262
  # Smooth Trackline #
263
263
  ############################################################################
264
264
 
265
+ cog=True
266
+ if 'rectMethod' != 'COG':
267
+ cog=False
268
+
265
269
  smthTrkFilenames = smoothTrackline(projDir=projDir, x_offset=x_offset, y_offset=y_offset, nchunk=nchunk, cog=cog, threadCnt=threadCnt)
266
270
  for son in portstar:
267
271
  beam = son.beamName
@@ -0,0 +1 @@
1
+ __version__ = '4.2.8'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pingmapper
3
- Version: 4.2.7
3
+ Version: 4.2.8
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.7'
File without changes
File without changes
File without changes
File without changes