-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cann't use snap #304
Comments
Hi @yang162132 pyroSAR does not yet support SNAP 10. The fix has already been made (#303) and a new version 0.26.0 will be released in the next days. |
Thank you for your response and I am looking forward to the next version. By the way, is there a complete case of Sentinel 1 radar data processing? Where can I see them. |
Hi @yang162132, you can find some examples in the docs: |
Why the result of pyroSAR.snap.util.geocode is Gtiff,rather then dim? This would seem to make more difficult to do ps-insar or time series analysis |
It's just how I found it to be most useful in the past. I did a lot of time series analysis, but all outside of SNAP. GeoTIFF was the most convenient for me. You can get around this like so: import os
from pyroSAR.snap.util import geocode, gpt
from pyroSAR.snap.auxil import Workflow, groupbyWorkers
import logging
logging.basicConfig(level=logging.INFO)
fname = 'S1A_IW_GRDH_1SDV_20180829T170631_20180829T170656_023464_028DE0_9F36.zip'
outdir = 'out'
tmpdir = 'tmp'
# only create the workflow and return the file name
fname_wf = geocode(infile=fname, spacing=200,
outdir=outdir, tmpdir=tmpdir,
test=True, returnWF=True)
# modify the workflow
wf = Workflow(fname_wf)
write = wf['Write']
out = os.path.join(outdir, os.path.basename(write.parameters['file']) + '.dim')
write.parameters['file'] = out
write.parameters['formatName'] = 'BEAM-DIMAP'
wf.write(fname_wf)
# run the workflow
groups = groupbyWorkers(fname_wf, n=2)
gpt(xmlfile=fname_wf, tmpdir=tmpdir, groups=groups) |
what do you usually use for time series analysis? I only found MintPy with stamps in python, None of them seem to support geotiff |
I mostly worked with backscatter data, nothing interferometric. I used to write my own programs in C++, nowadays I use a lot of xarray and dask. For this I don't use the function Since you are mentioning MintPy and stamps, I guess you are after interferometric analysis. I haven't done much in this direction. However, there is this PR #152 which I need to merge one day. Other than that you would need to write your own workflows using the SNAP API. |
Hi @johntruckenbrodt, Thanks! |
@yang162132, the new version was released yesterday. SNAP 10 is now supported. Hi @vchaparro. Yes, the new version ist pip-installable. There is a new restriction for Python: |
The python version I'm using is 3.10, but I've needed to install pyroSAR 0.26 from git, because with python 3.10 pip doesn't find the last version, the latest version it installs is 0.24.0 |
Mh. I just did a fresh install like this: mamba create -n test python=3.10
mamba activate test
pip install pyroSAR It worked fine, 0.26.0 is installed. Can you try installation with a fresh environment? Perhaps some other package is causing the conflict. |
Hi @johntruckenbrodt , Thanks! |
Great you got it to work @vchaparro. Happy processing |
Closing this as the original error has been fixed. @yang162132 feel free to open another issues in case you have more questions. |
pyroSAR ==0.24.0 and snap is esa-snap_sentinel_linux-10.0.0
The text was updated successfully, but these errors were encountered: