Replies: 3 comments 3 replies
-
Good question. By default, mintpy/geocode.py uses this approach to determine the output pixel size, which uses the following criteria:
Therefore, for a full-resolution product in geo-coordiantes, I think the default output grid (without manually setting the Alternatively, if you only need to show the data in KML, using the radar-coded velocity file, as in |
Beta Was this translation helpful? Give feedback.
-
We just use the radar-coded files and then use the lat/long information for each pixel to plot them on a map (aka geocoding). We have code for plotting but it is not in a good shape. I can share though if you are interested. |
Beta Was this translation helpful? Give feedback.
-
Here the two scripts. The first plots velocity or DemError on a map. The second also plots the time series. But they are messy and the python needs re-factoring. You are of course welcome to do this. The second one will be renamed to view_full_res_timeseries.py or so. https://github.com/geodesymiami/rsmas_insar/blob/master/minsar/view_scatterplot.py |
Beta Was this translation helpful? Give feedback.
-
The starting point for this question is here. Miaplpy Example
I am trying to Visualize the result of land displacement with tif data, How can i get the resolution that I prefer?
From above link, I found it that the key of resolution of result is
mintpy.geocode.laloStep
I tried several cases with command
smallbaselineApp.py factory.txt --dir ./miaplpy2/network_single_reference/ --start geocode
by:and visualized
geo_velocity.h5
withsave_kmz.py
and upload to google earth. the results are:(100m, 50m, 10m)
But when I use
save_gdal.py
function to result of each options, the resolution of tif data are same on QGISFurthermore, the resolution is different from what I expected.
I want to generate the tif data for visualize the resolut of land displacement with the resolution the i expected,
How to do that?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions