Metadata-Version: 2.1
Name: catesegy
Version: 0.0.1
Summary: Python client for extracting data from CATE archives and writing as segy data
Author-email: Motion Signal Technologies <kit.chambers@motionsignaltechnologies.com>
Project-URL: Homepage, https://github.com/motionsignaltechnologies/cate-segy
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

-----------
DESCRIPTION
-----------

Python client for extracting data from CATE archives and writing as segy data

------------
INSTALLATION
------------

    pip install catesegy


-----
USAGE
-----

See also `catenp.catesegy.Example`


    from catesegy import Authenticate,WriteFile

    # Authenticate to the server
    tk = Authenticate(serverAddress,serverPort,cateUserName,catePassword)
   
    # Get the data and save as SEGY
    WriteFile(serverAddress,serverPort,cateUserName,
        tstart,tstop,
        cstart,cstop,
        "test.sgy"
        )



