Page 1 of 1

HICO Data processing

Posted: Sat May 27, 2023 9:30 am
by Vimal
How to process HICO sensor data in latest version polymer4.16.1?

Re: HICO Data processing

Posted: Mon Aug 21, 2023 8:31 am
by fsteinmetz
Hello,

To process HICO, you can use the same logic as with the other sensors, using the Level1_HICO class. The resulting python script would look like :

Code: Select all

from polymer.level1_hico import Level1_HICO
from polymer.main import run_atm_corr
from polymer.level2_nc import Level2_NETCDF

run_atm_corr(
    Level1_HICO("<HICO file>"),
    Level2_NETCDF("<output file>"),
)
Kind regards,
François