Skip to main content

Convert Campbell Scientific TOB1/TOB2/TOB3 files to ASCII (TOA5).

Project description

Python program to convert Campbell Scientific TOB files to ASCII (TOA5) files.

This tool is inspired by the identically-named camp2ascii written by Mathias Bavay: https://git.wsl.ch/bavay/camp2ascii

Installation

You can install camp2ascii using pip:

pip install "camp2ascii[progress]"

or, to install without the progress bar dependency:

pip install camp2ascii

Usage

camp2ascii can be used as a command line tool or as a python module.

The following command calls the CLI:

camp2ascii ./64293_20Hz*.dat -odir ./ascii_files -pbar

This will attempt to convert all files matching the glob string ./64293_Metdata*.dat from TOB (binary) format to TOA5 (ASCII) format, outputting the resulting files to the ./ascii_files directory. A progress bar will be displayed.

To use the python API:

import pandas as pd
import matplotlib.pyplot as plt
# if you installed without pip
# import sys
# sys.path.append("/path/to/working/directory/")
from camp2ascii import camp2ascii, toa5_to_pandas
from pathlib import Path
# convert to ascii as before
out_files = camp2ascii("./64293_20Hz*.dat", "./ascii_files", pbar=True)
# read in data using pandas, summarize to 30 minute averages, and plot sonic temperature
data = pd.concat([
    (
        toa5_to_pandas(path)
        .resample("5min")
        .mean()
    )
    for path in out_files
])
data = data.sort_index()
data.plot(y="sonic_temp", style='o')

plt.show()

The above code snippet uses toa5_to_pandas, but you can also do pd.read_csv(path, skiprows=[0, 2, 3], na_values=["NAN"], parse_dates=["TIMESTAMP"], index_col="TIMESTAMP"). However, since integers in python cannot be NAN (but can in TOA5 files) and due to how NANs are stored in TOA5 files (as "NAN", in quotes), pandas has trouble correctly identifying certain datatypes. toa5_to_pandas will generally work better for this purpose.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

camp2ascii-1.1.0.tar.gz (40.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

camp2ascii-1.1.0-py3-none-any.whl (44.0 kB view details)

Uploaded Python 3

File details

Details for the file camp2ascii-1.1.0.tar.gz.

File metadata

  • Download URL: camp2ascii-1.1.0.tar.gz
  • Upload date:
  • Size: 40.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for camp2ascii-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c0c7c1db20723b114028eb8331aac396b8ac650f5ffe003737adefb9d3ecf8d2
MD5 af48b788f6b1a610061ec79682eef502
BLAKE2b-256 1acccb32cc5d852b76c1123c92024e445c48a123a9192624598905fd5b21e48a

See more details on using hashes here.

File details

Details for the file camp2ascii-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: camp2ascii-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for camp2ascii-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f795500bdc7e2b1e07b49af700b55d88547f97bd02bc7a85dcd666faa7839787
MD5 4029a23d5cc5e491e4cb58bbacd64f6a
BLAKE2b-256 2693a73bdd4412d9a2b01271f835021a79432c3882db26cb76356c1e83e80257

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page