Metadata-Version: 2.1
Name: ctdfjorder
Version: 0.1.0
Summary: A package for processing and analyzing CTD data.
Home-page: https://github.com/nikothomas/CTDFjorder
Author: Nikolas Yanek-Chrones
Author-email: nikojb1001@gmail.com
Project-URL: Homepage, https://github.com/nikothomas/CTDFjorder
Project-URL: Issues, https://github.com/nikothomas/CTDFjorder/issues
Keywords: CTD
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: polars~=1.1.0
Requires-Dist: psutil~=6.0.0
Requires-Dist: enlighten~=1.12.4
Requires-Dist: pandas~=2.2.2
Requires-Dist: setuptools~=70.3.0
Requires-Dist: openpyxl~=3.1.4
Requires-Dist: tensorflow~=2.17.0
Requires-Dist: numpy~=1.26.4
Requires-Dist: gsw~=3.6.18
Requires-Dist: matplotlib~=3.9.1
Requires-Dist: statsmodels~=0.14.2
Requires-Dist: keras~=3.4.1
Requires-Dist: scikit-learn~=1.5.1
Requires-Dist: pyrsktools~=0.1.9
Requires-Dist: colorlog~=6.8.2

# CTDFjorder

CTDFjorder is a Python package for processing and analyzing CTD (Conductivity, Temperature, Depth) data.
Documentation: [Read the docs](https://nikothomas.github.io/docs/CTDFjorder.html)

## Features

- Read RSK (.rsk) and Castaway (.csv) files and extract CTD data
- Process CTD data, including removing non-positive samples and cleaning data
- Calculate derived quantities such as absolute salinity, density, and overturns
- Determine mixed layer depth (MLD) using different methods
- Generate plots for visualizing CTD profiles and derived quantities
- Command-line interface (CLI) for easy processing and merging of RSK files

## Installation
It's recommended that you create a new environment just for CTDFjorder. This can be done in conda with the following
command.
```shell
conda create --name ctdfjorder -c conda-forge python=3.11
conda activate ctdfjorder
```
To install CTDFjorder you can use pip:
```shell
pip install ctdfjorder
```

## Usage

CTDFjorder provides a command-line interface (CLI) for processing and analyzing CTD data. Here are the available commands:

### Process a single RSK file

```shell
ctdfjorder-cli process <file>
```

This command processes a single RSK file specified by `<file>`. It performs various steps like adding filename to the CTD data table, saving data to a CSV file, adding location information, removing non-positive samples, etc.

### Merge all RSK files in the current folder

```shell
ctdfjorder-cli merge
```

This command merges all RSK files found in the current folder. It adds filename and location information to the data table and saves the data to a CSV file.

### Run the default processing pipeline

```shell
ctdfjorder-cli default
```

This command runs the default processing pipeline on all RSK files found in the current folder. It performs the same steps as the `process` command for each RSK file.

## Configuration

CTDFjorder looks for a master sheet Excel file named "FjordPhyto MASTER SHEET.xlsx" in the current working directory. This file is used for estimating location information when it's not available in the RSK files. You can change this by modifying the CTDFjorder.master_sheet_path field to the name of your own spreadsheet.

## Examples

Here are a few examples of how to use CTDFjorder:

- Process a single RSK file:

```shell
ctdfjorder-cli process path/to/rskfile.rsk
```

- Merge all RSK files in the current folder:

```shell
ctdfjorder-cli merge
```

- Run the default processing pipeline on all RSK files in the current folder:

```shell
ctdfjorder-cli default
```

- Write your own script:
```
import CTDFjorder
import os
for file in get_rsk_filenames_in_dir(os.getcwd()):
    try:
        my_data = CTD(file)
        my_data.add_filename_to_table()
        my_data.save_to_csv("output.csv")
        my_data.add_location_to_table()
        my_data.remove_non_positive_samples()
        my_data.clean("practicalsalinity", 'salinitydiff')
        my_data.add_absolute_salinity()
        my_data.add_density()
        my_data.add_overturns()
        my_data.add_mld(1)
        my_data.add_mld(5)
        my_data.save_to_csv("outputclean.csv")
        my_data.plot_depth_density_salinity_mld_scatter()
        my_data.plot_depth_temperature_scatter()
        my_data.plot_depth_salinity_density_mld_line()
    except Exception as e:
        print(f"Error processing file: '{file}' {e}")
        continue
```

## Contributing

Contributions to CTDFjorder are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the [GitHub repository](https://github.com/nikothomas/CTDFjorder).

## License

CTDFjorder is released under the MIT License.

## Acknowledgments

CTDFjorder was developed by Nikolas Yanek-Chrones for the Fjord Phyto project. The gsw library was used for certain dervied calculations.

## Citations
McDougall, T. J., & Barker, P. M. (2011). Getting started with TEOS-10 and the Gibbs Seawater (GSW) Oceanographic Toolbox. SCOR/IAPSO WG127.

