Skip to content

lowlandresearch/jascobin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jascobin

Parsers for Jasco binary data.

Currently only *.jws files.

Requirements

  • Python3.7+ only (uses dataclass)

Installation

pip install jascobin

Usage

import jascobin

jws = jascobin.load_jws('spectral.jws')

# OleFileIO object of file data
print(jws.ole)

# Header data 
print(jws.header)

# X/Y data
print(jws.x)
print(jws.y)

Caveats

Currently, jascobin is only capable of the following:

  • Parsing *.jws files
  • Parsing a few things from *.jws files:
    • X/Y data (with multiple channels)
    • What little of the DataInfo metadata I've reverse-engineered

About

Parsers for Jasco binary files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages