When I try to run the following script to process HICO data using polymer-v4.12:
Code: Select all
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from polymer.main import run_atm_corr,Level1,Level2
from polymer.level1_hico import Level1_HICO
from polymer.level2_nc import Level2_NETCDF
from polymer.ancillary_era5 import Ancillary_ERA5
def example_hico():
run_atm_corr(
Level1_HICO('/home/southocean/deskface/H2012056082449.L1B_ISS', ancillary=Ancillary_ERA5()),
Level2_NETCDF(outdir='/home/southocean/deskface/HICO')
)
if __name__ == "__main__":
example_hico()
Code: Select all
python: /tmp/build/80754af9/libnetcdf_1545349563001/work/libsrc4/nc4var.c:431: nc4_vararray_add: Assertion `var->varid == grp->vars.nelems' failed.
Aborted (core dumped)
Can someone tell me how to solve it?
Thanks for your help in advance!
Best regards,
southocean