Metadata-Version: 2.1
Name: imc2zarr
Version: 0.2.0
Summary: IMC scan to Zarr conversion
Home-page: https://gitlab.developers.cam.ac.uk/astronomy/camcead/imaxt/imc2zarr
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/imc2zarr/-/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
License-File: LICENSE

# IMC to Zarr converter

Convert IMC scan dataset to Zarr.

## Install

```
pip install imc2zarr
```

### Requirements

* click
* numpy
* pandas
* python_dateutil
* xarray

## Usage

### Arguments
* input_path:
  * the root folder of the IMC scan containing a single mcd file and/or other related files: XML meta & scan data in text format
  * or, the path of an mcd file
* output_path: the location where to store the converted output in Zarr format 

### From Python script

```
from imc2zarr import imc2zarr

imc2zarr(input_path, output_path)
```

### From the command line

```
imc2zarr input_path output_path
```
