Metadata-Version: 2.2
Name: stpt2zarr
Version: 0.2.1
Summary: STPT scan to Zarr conversion
Home-page: https://gitlab.developers.cam.ac.uk/astronomy/camcead/imaxt/stpt2zarr
Author: Mo Alsad and Eduardo Gonzalez Solares
Author-email: "msa51@cam.ac.uk
Project-URL: Bug Tracker, https://gitlab.developers.cam.ac.uk/astronomy/camcead/imaxt/stpt2zarr/-/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: click
Requires-Dist: dask
Requires-Dist: distributed
Requires-Dist: imaxt_image
Requires-Dist: python_dateutil
Requires-Dist: xarray
Requires-Dist: zarr

# STPT to Zarr converter

Convert STPT scan dataset to Zarr.

## Install

```
pip install stpt2zarr
```

### Requirements

* click
* dask
* distributed
* imaxt_image
* python_dateutil
* xarray
* zarr

## Usage

### Arguments
* input_path: the root folder of the STPT scan containing a mosaic file
* output_path: the location where to store the converted output in Zarr format 

### From Python script

```
from stpt2zarr import stpt2zarr

stpt2zarr(input_path, output_path)
```

### From the command line

```
stpt2zarr input_path output_path
```
