pymast 0.0.5__tar.gz → 0.0.6__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.
- {pymast-0.0.5 → pymast-0.0.6}/PKG-INFO +1 -1
- {pymast-0.0.5 → pymast-0.0.6}/pymast/parsers.py +2 -2
- {pymast-0.0.5 → pymast-0.0.6}/pymast.egg-info/PKG-INFO +1 -1
- {pymast-0.0.5 → pymast-0.0.6}/setup.py +1 -1
- {pymast-0.0.5 → pymast-0.0.6}/LICENSE.txt +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/README.md +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/__init__.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/fish_history.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/formatter.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/naive_bayes.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/overlap_removal.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/predictors.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/radio_project.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast/table_merge.py +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast.egg-info/SOURCES.txt +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast.egg-info/dependency_links.txt +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast.egg-info/not-zip-safe +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast.egg-info/requires.txt +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/pymast.egg-info/top_level.txt +0 -0
- {pymast-0.0.5 → pymast-0.0.6}/setup.cfg +0 -0
|
@@ -468,8 +468,8 @@ def srx1200(file_name,
|
|
|
468
468
|
# read in telemetry data
|
|
469
469
|
if new_split == None:
|
|
470
470
|
telem_dat = pd.read_fwf(file_name,
|
|
471
|
-
colspecs = [(0,
|
|
472
|
-
names = ['Index','Date','Time','[uSec]','Tag/BPM','Freq [MHz]','Codeset','Antenna','Gain','RSSI'],
|
|
471
|
+
colspecs = [(0,7),(7,25),(25,35),(35,46),(46,57),(57,68),(68,80),(80,90),(90,102),(102,110),(110,130),(130,143),(143,153)],
|
|
472
|
+
names = ['Index','Rx Serial Number','Date','Time','[uSec]','Tag/BPM','Freq [MHz]','Codeset','Antenna','Gain','RSSI','Latitude','Longitude'],
|
|
473
473
|
skiprows = dataRow,
|
|
474
474
|
skipfooter = eof - dataEnd)
|
|
475
475
|
telem_dat.drop(columns = ['Index'], inplace = True)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from setuptools import setup
|
|
2
2
|
|
|
3
3
|
setup(name = 'pymast',
|
|
4
|
-
version = '0.0.
|
|
4
|
+
version = '0.0.6',
|
|
5
5
|
description = '''Movement Analysis Software for Telemetry (MAST) for
|
|
6
6
|
use in removing false positive and overlap detections from radio telemetry
|
|
7
7
|
projects and assessing 1D movement patterns.''',
|
|
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
|