Trouble when loading /nsidc-nasa-v2.1/monthly_mean/sie

Hi @aho

I'd like to load with StartR a dataset of sea ice extent that has been computed few years ago. The issue is probably related to the dataset itself but I'm not sure.

My code is:

data_obs_retrieve2 <- startR::Start(dat = '/esarchive/obs/nasa/nsidc-nasa-v2.1/monthly_mean/sie/sie_$date$.nc',
                                    var = 'sie_N', 
                                    date = '199311', # dates_files,
                                    time = 'all', # values(dates_v2), 
                                    time_across = 'date', 
                                    merge_across_dims = TRUE,
                                    split_multiselected_dims = TRUE,
                                    return_vars = list(time=c('date')),
                                    retrieve = T)

Note that the inner variable doesn't have the same name than in the file's name.

Can you have a look at it?

Thanks

Aude