Search found 306 matches

by fsteinmetz
Fri Nov 06, 2020 5:01 pm
Forum: Support
Topic: make auxdata_all crashing
Replies: 10
Views: 7476

Re: make auxdata_all crashing

Thanks for the information Guillaume, it seems that the packaging has changed on anaconda.
Cheers,
François
by fsteinmetz
Fri Nov 06, 2020 9:39 am
Forum: Support
Topic: make auxdata_all crashing
Replies: 10
Views: 7476

Re: make auxdata_all crashing

Hi Guillaume,
Indeed we are currently having a technical problem here, and download.hygeos.com is not available for the moment. Hopefully it will be fixed today.
Cheers,
François
by fsteinmetz
Wed Nov 04, 2020 9:29 am
Forum: Support
Topic: run lots of images
Replies: 16
Views: 11990

Re: run lots of images

Dear Julia,

It seems you are passing a list to Level1_MSI instead of a filename (str).
A simple loop on many granules may look like this in python:

Code: Select all

from pathlib import Path
for filename in Path('/path/to/directory/').glob('**/GRANULE/*'):
    run_atm_corr(Level1_MSI(str(filename)), ...)
by fsteinmetz
Mon Nov 02, 2020 5:05 pm
Forum: Support
Topic: Polymer for Sentinel-2
Replies: 4
Views: 6408

Re: Polymer for Sentinel-2

These options are for processing a rectangular part of the image, from line sline to eline and column scol to ecol.
by fsteinmetz
Sat Oct 17, 2020 8:50 pm
Forum: Support
Topic: What is Bitmask 2112
Replies: 10
Views: 8009

Re: What is Bitmask 2112

Hello Vishnu, These flags are in the second category, so products are still provided by default even when these flags are raised. There is no need to modify anything in common.py. Even "case2" (1024) and "inconsistency" (2048) are not included in the recommended bitmask value 1023. To avoid filterin...
by fsteinmetz
Fri Oct 16, 2020 7:28 am
Forum: Support
Topic: What is Bitmask 2112
Replies: 10
Views: 8009

Re: What is Bitmask 2112

Dear Vishnu, There are two kind of flags: 1) Those for which the products are empty (set to NaN) - these are defined by the variable BITMASK_INVALID in params.py 2) The other flags (see common.py), for which the products are still calculated. These flags must be removed by the user, so avoiding them...
by fsteinmetz
Wed Oct 14, 2020 6:11 am
Forum: Support
Topic: run lots of images
Replies: 16
Views: 11990

Re: run lots of images

You are passing 'result' to Level1_MSI, which is not a variable but a string.
by fsteinmetz
Mon Oct 12, 2020 7:37 am
Forum: Support
Topic: Problems encountered when processing landsat-8 data
Replies: 5
Views: 4532

Re: Problems encountered when processing landsat-8 data

Sorry, I have not received your images.
Cheers,
François
by fsteinmetz
Fri Oct 09, 2020 8:14 am
Forum: Support
Topic: run lots of images
Replies: 16
Views: 11990

Re: run lots of images

Dear Binbin, Good to know that you are planning for a massive processing. You can activate parallel processing with the argument multiprocessing=-1 which will make the processing faster on a single computer. Then you can use a simple loop over the files, or set up a processing on a cluster, dependin...
by fsteinmetz
Wed Sep 23, 2020 9:03 am
Forum: Support
Topic: Why there are many NaN in processing sentinel-2 ?
Replies: 10
Views: 7375

Re: Why there are many NaN in processing sentinel-2 ?

dingky wrote:
Tue Sep 22, 2020 1:34 pm
Can polymer algorithm only perform atmospheric correction on water bodies?
Yes
dingky wrote:
Tue Sep 22, 2020 1:34 pm
Can it perform atmospheric correction on land.
No

Cheers,
François