Install requirements with conda:
conda env create -f environment.ymlActivate the environment:
conda activate nextcamtoolsIf you want to work with the outputs of nextsim you need to use MaskedArray files. In your utilities add
import numpy.ma as maNow, after selecting a variable you have to move from a DataArray file to a MaskedDataArray : for example for sea-ice thickness
data = xr.open_dataset('Moorings_2018m01.nc')
# Select Sea-ice thickness and putting it to the masked_array
sit_output = data.sit.to_masked_array()
#Get the mask
mask = ma.getmaskarray(sit_output[0])
### Comparison
Files to test the comparison can be found [here](https://drive.google.com/drive/folders/1MggqKfSV-AvG_L85Am_4jvmNvk3jClwJ?usp=sharing)