Sanity Check and Filtering
First step of the data processing chain.
Field Boundaries
import alphashape
alpha = len(position)
alpha_shape = alphashape.alphashape(points, alpha)from scipy.spatial import ConvexHull
hull = ConvexHull(points)
indices = hull.verticesDataset Size
Averaging
temp_tot = (0.5 * (data_hh2 + data_vv2))
temp_q = 1.0 * (0.5 * (data_hh2 - data_vv2))
temp_pol = np.sqrt(data_u * data_u + temp_q * temp_q + data_v * data_v)
temp_unpol = temp_tot - temp_polFiltering
Last updated