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 is a Python port of the same tool, originally written in C by Mathias Bavay: https://git.wsl.ch/bavay/camp2ascii

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

Example usage as a command line tool:

python camp2ascii.py ./64293_20Hz*.dat -o ./ascii_files -pbar

or, after installing with pip:

camp2ascii.py ./64293_20Hz*.dat -o ./ascii_files -pbar

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.

Example usage as a python module:

import pandas as pd
import matplotlib.pyplot as plt
from camp2ascii import camp2ascii
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([
    (
        pd.read_csv(path, na_values="NAN", parse_dates=["TIMESTAMP"], index_col="TIMESTAMP", skiprows=[0, 2, 3])
        .resample("5min")
        .mean()
    )
    for path in out_files
])
data = data.sort_index()
data.plot(y="sonic_temp", style='o')

plt.show()

Note that much of this port was done with the help of AI coding tools, and is currently in alpha. I have yet to implement rigorous testing or to fully clean up the AI-generated code.

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-0.1.0.tar.gz (46.2 kB view details)

Uploaded Source

Built Distribution

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

camp2ascii-0.1.0-py3-none-any.whl (35.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for camp2ascii-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6bfac12391fc576d054a3a8fbb8b0024c679ef66d15e71d6cdcd6641b329332b
MD5 36386747fc38ed628af32456f874382c
BLAKE2b-256 3431e7a89b1caa981a42ea407f61d291341a64611647354757d8f27b90f8d08c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for camp2ascii-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 707df1a190682bf33f0f71f52100cf193db5c766e1e72616eb8184535edce778
MD5 10f268d94d8feb31d50bb1d218f7855e
BLAKE2b-256 9b2446c878a135dd6a36d97226869185a517553fd76117ed4184615cd003eeb5

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