UAVSAR Data Products
Contents
UAVSAR Data Products¶
UAVSAR has a variety of different type of images:
Repeat Pass Interferometric images contain:
InSAR Data Types
ANN file (.ann): a text annotation file with metadata
AMP files (.amp1 and .amp2): amplitude products for flight 1 and flight 2
COR files (.cor): coherence a measure of the noise level of the phase
INT files (.int): wrapped phase difference between the two images
UNW files (.unw): unwrapped phase difference between the two images
INC files (.inc): incidence angle in radians
HGT file (.hgt): the DEM that was used in the InSAR processing
UAVSAR repeat pass interferometry uses two images of the same place but separated in time. Phase changes between the two aquistions are calculated, creating a wrapped interferogram. These phase changes are due to either the wave traveling a longer distance (ground movement or refraction) or change wave speeds (atmospheric water vapor and snow).
GRD files (.grd): products projected to the ground in geographic coordinates (latitude, longitude) Finally all images can be in radar slant range or projected into WGS84. Images that have already been projected to ground range will have the extension .grd appended to their file type extension.
For instance a image of unwrapped phase that has not been georefenced would end with .unw, while one that was georeferenced would end with .unw.grd. You will generally want to use .grd files for most analysis.
Polarimetric PolSAR images contain:
ANN file (.ann): a text annotation file with metadata
Polsar file (HHVV.grd): all the rest of the files will be a pair of polarizations pushed together
Polsar files have a pair of polarizations (VV, VH, HV, HH) combined in their file name. These files are the phase difference between polarization XX and polarization YY. For instance HHHV is the phase difference between HH and HV polarizations. HVVV is the phase difference between HV and VV and so one. There are 6 of these pairs since order is irrelevant. These 6 images are combined to calculate various metrics that tell you about the types of scattering occurring.
Import Libraries¶
try:
from uavsar_pytools import UavsarScene
except ModuleNotFoundError:
print('Install uavsar_pytools with `pip install uavsar_pytools`')
import os
from os.path import join, basename
import matplotlib.pyplot as plt
from glob import glob
import numpy as np
import pandas as pd
import seaborn as sns
import holoviews as hv
import rioxarray as rxa
from bokeh.plotting import show
import datashader as ds
from datashader.mpl_ext import dsshow
hv.extension('bokeh', logo=False)
import earthpy.plot as ep
import earthpy.spatial as es