depsi.densification
depsi.densification.densification(stm_dens_pnts, stm_network_pnts, idx_refpnt=None, n_connections=1, key_xcoord='azimuth', key_ycoord='range', key_h2ph='h2ph_values', key_sdphase='sd_phase', key_Btemporal='years', **kwargs_arc_estimation)
Densification ambiguity estimation w.r.t. network points.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stm_dens_pnts
|
Dataset
|
Dataset containing densification points. |
required |
stm_network_pnts
|
Dataset
|
Dataset containing network points. |
required |
idx_refpnt
|
int or None
|
Index of the reference point in the network points (default is None). The phase of this point will be used to calculate the unwrapped phases of densification points. If None, this function will look for the "idx_refpnt" attribute in stm_network_pnts. If not found, an error will be raised. |
None
|
n_connections
|
int
|
Number of nearest neighbors to connect each densification point to (default is 1). Should be an odd number. |
1
|
key_xcoord
|
str
|
Name of the coordinate representing the x-axis (default is 'azimuth'). |
'azimuth'
|
key_ycoord
|
str
|
Name of the coordinate representing the y-axis (default is 'range'). |
'range'
|
key_h2ph
|
str
|
Name of the data variable containing height-to-phase values (default is 'h2ph_values'). Assuming the same key in densification and network points. |
'h2ph_values'
|
key_sdphase
|
str
|
Name of the data variable containing phase data (default is 'sd_phase'). Assuming the same key in densification and network points. |
'sd_phase'
|
key_Btemporal
|
str
|
Name of the data variable containing temporal baselines for arc estimation (default is 'years'). |
'years'
|
**kwargs_arc_estimation
|
Additional keyword arguments to pass to the arc estimation function. |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Densified points with estimated ambiguities, including both the original network points and the densification points. |
Source code in depsi/densification.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | |