Hey,
got snappy working. now just trying to do some simple processing. Applying the orbit file takes forever. I keep eventually just cancelling it, which returns the error at the line where I createProduct for the orbit files:
RuntimeError: org.esa.snap.core.gpf.OperatorException: Connect to qc.sentinel1.eo.esa.int:443 [qc.sentinel1.eo.esa.int/131.176.235.71] failed: Connection timed out (Connection timed out) due to Connection timed out (Connection timed out)
The code:
input_files = sorted(list(iglob(join(ppath, '**', '*S1*.zip'), recursive = True)))
for i in input_files:
read = snappy.ProductIO.readProduct(i)
parameters = snappy.HashMap()
parameters.put('Apply-Orbit-File', True)
apply_orbit = snappy.GPF.createProduct('Apply-Orbit-File', parameters, read)
What’s up? Is the site maybe just down for maintenance or does it look like I’m doing something wrong?