seabird
seabird copied to clipboard
Python parser for Sea-Bird CTD outputs, usually .cnv files.
On line 535 in cnv.py you should encapsulate like: ` try: output["LATITUDE"] = self.attrs["LATITUDE"] output["LONGITUDE"] = self.attrs["LONGITUDE"] except: pass` since it is possible to use the seabird without coordinates.
Adding 'interval' to attributes would allow user to easily add a timestamp to every single sample. If you add: `"interval": "\\#\\ interval\\ =\\ (?P[^#\n]+)\n",` to cnv.json it should work.
my system (conda-forge): seabird 0.12.0 cotede 0.23.7 import seabird from seabird.cnv import fCNV profile = fCNV('dCTD_2022_10_009.cnv') pqc = fProfileQC('dCTD_2022_10_009.cnv') and I have this error: time not found Multiple lat/lon positions...
Using fCNV to read a .cnv profile: import sys import numpy as np import seabird from seabird.cnv import fCNV Fic = DirHydro + DirABR + "Est11__SouthBahia.cnv" profile = fCNV(Fic) Error...
Hi there, I get the following exception when using Seabird to work with any of my .cnv files: "CNVError: There are no rules able to parse the input. File: [filename]"...
Hello! I am trying to get the Seabird python module to work that I installed using PIP. In command line when i write "seabird," it shows seabird help. But when...
I'm not 100% clear if, how, and where the calibration values are applied. Does this happen on the instrument side or in the seabird Data Processing software or is this...
Hi! Im actually enrolled on a task that involve me to use the QC seabird python package. I actually been following the notebooks examples, but on the first first step...
Thank you for the package. I am testing it. I can not read the sample btl file Here is the error message.