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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687 | class LSMNonDiff(LSM):
"""Least-squares adjustment of non-differential gravimeter observations with weighted constraints.
Attributes
----------
setup_obs_df : Pandas DataFrame
Pandas Dataframes for logging (differential or absolute) setup observations, the related metadata, estimation
results and statistics. The columns of the dataframe are defined in `self._SETUP_OBS_COLUMNS`.
observed_stations : list of str
Unique list of names of observed stations, defining the order of stations (station IDs) for all matrices and
vectors used in the adjustment scheme.
"""
_SETUP_OBS_COLUMNS_DTYPES = {
'survey_name': 'str',
'ref_epoch_dt': 'datetime64[ns, UTC]',
'obs_id': 'int',
'station_name': 'str',
'setup_id': 'int',
'g_obs_mugal': 'float',
'sd_g_obs_mugal': 'float',
'sd_g_obs_est_mugal': 'float',
'v_obs_est_mugal': 'float', # Post-fit residuals
'sd_v_obs_est_mugal': 'float', # SD of post-fit residuals
'w_obs_est_mugal': 'float',
'r_obs_est': 'float',
'tau_test_result': 'str',
}
_SETUP_OBS_COLUMNS = list(_SETUP_OBS_COLUMNS_DTYPES.keys())
# Short colum names with max. 10 char suitable for shapefiles:
_SETUP_OBS_COLUMNS_SHORT = {
'survey_name': 'survey',
'ref_epoch_dt': 'epoch_dt',
'obs_id': 'obs_id',
'station_name': 'station',
'setup_id': 'setup',
'g_obs_mugal': 'g',
'sd_g_obs_mugal': 'sd_g',
'sd_g_obs_est_mugal': 'sd_g_est',
'v_obs_est_mugal': 'v', # Post-fit residuals
'sd_v_obs_est_mugal': 'sd_v', # SD of post-fit residuals
'w_obs_est_mugal': 'w',
'r_obs_est': 'r',
'tau_test_result': 'tau_test',
}
# Column names of self.drift_pol_df:
# - keys: Column names of the pandas dataframe
# - values: Short description for table headers, etc., in the GUI
_DRIFT_POL_DF_COLUMNS_DICT = {
'survey_name': 'Survey',
'degree': 'Degree',
'coefficient': 'Coefficient',
'sd_coeff': 'SD',
'coeff_unit': 'Unit',
'ref_epoch_t0_dt': 't0',
}
_DRIFT_POL_DF_COLUMNS = list(_DRIFT_POL_DF_COLUMNS_DICT.keys())
def __init__(self, stat_df, setups, comment='', write_log=True):
"""
Parameters
----------
stat_df : :py:obj:`gravtools.Station.stat_df`
The station dataframe contains all relevant station data.
setups : dict of dicts
The setups dictionary contains all observation data used for the adjustment. The keys of the dictionary
are the survey names (str). The items are again keys with the following items:
- ref_epoch_delta_t_h : datetime object
Reference epoch for the relative reference times in the column `delta_t_h` in the `setup_df` dataframe.
The reference epoch is determined as the epoch of the first (active) observation in this survey.
- ref_epoch_delta_t_campaign_h : datetime object
Reference epoch for the relative reference times in the column `delta_t_campaign_h` in the `setup_df`
dataframe. The reference epoch is determined as the epoch of the first (active) observation in the
campaign.
- setup_df : Pandas DataFrame
Pandas dataframes containing the observation data (see :py:obj:`gravtools.Survey.setup_df`).
comment : str, optional (default = '')
Arbitrary comment on the LSM run.
write_log : bool, optional (default=True)
Flag that indicates whether log string should be written or not.
"""
# Call constructor from abstract base class:
lsm_method = 'LSM_non_diff'
super().__init__(lsm_method, stat_df=stat_df, setups=setups, comment=comment, write_log=write_log)
@classmethod
def from_campaign(cls, campaign, comment='', write_log=True):
"""Constructor that generates and populates the LSM object from a Campaign class object.
Notes
-----
Put checks that are dependent on the LSM method into here! All common checks and preparations are implemented
in the `from_campaign` method of the parent class `LSM`.
Parameters
----------
campaign : :py:obj:`gravtools.models.survey.Campaign`
The campaign object needs to provide setup data for all active surveys and the related station data.
comment : str, optional (default = '')
Arbitrary comment on the LSM run.
write_log : bool, optional (default=True)
Flag that indicates whether log string should be written or not.
Returns
-------
:py:obj:`.LSMNonDiff`
Contains all information required for adjusting the campaign.
"""
return super().from_campaign(campaign, comment=comment, write_log=True)
def adjust(self, drift_pol_degree=1,
sig0_mugal=1,
scaling_factor_datum_observations=1.0,
add_const_to_sd_of_observations_mugal=0.0,
scaling_factor_for_sd_of_observations=1.0,
confidence_level_chi_test=0.95,
confidence_level_tau_test=0.95,
drift_ref_epoch_type='survey',
noise_floor_mugal=0.0,
verbose=False
): # Confidence level):
"""Run the adjustment based on non-differential observations.
Parameters
----------
drift_pol_degree : int, optional (default=1)
Degree of estimated drift polynomial.
sig0_mugal : int, optional (default=1)
A priori standard deviation of unit weight of observations [µGal] for the stochastic model of the
least-squares adjustment.
scaling_factor_datum_observations : float, optional (default=1.0)
Factor for scaling the standard deviation (SD) of g of datum stations. The scaled SD is used for
weighting the direct pseudo observations of g at the datum stations that are introduced as datum
constraints.
add_const_to_sd_of_observations_mugal : float, optional (default=0.0)
The defined additive constant is added to the standard deviation (SD) of setup
observations in order to scale the SD and the resulting weights to realistic values. In µGal. The scaling
factor `scaling_factor_for_sd_of_observations` is applied before adding this constant!
scaling_factor_for_sd_of_observations : float, optional (default=1.0)
Scaling factor for the standard deviation of the setup observations. `add_const_to_sd_of_observations_mugal`
is applied after applying the scaling factor!
confidence_level_chi_test : float, optional (default=0.95)
Confidence level for the goodness-of-fit test.
confidence_level_tau_test : float, optional (default=0.95)
Confidence level for the tau test.
drift_ref_epoch_type : string ('survey' or 'campaign'), optional (default='survey')
Defines whether the reference epoch t0 for the estimation of the drift polynomials for each survey in the
campaign is the reference epoch of the first (active) observation in each survey (option: 'survey') or the
first (active) observation in the whole campaign (option: 'campaign').
noise_floor_mugal : float, optional (default=0.0)
The standard error SE of the estimated gravity values at stations is calculated by SE = sqrt(SD**2 + NF**2),
where SD is the estimated standard deviation of the station's gravity and NF is the noise floor value
specified here.
verbose : bool, optional (default=False)
If `True`, status messages are printed to the command line, e.g. for debugging and testing
"""
# Prepare lists and indices:
# - Observations and parameters:
self.observed_stations = []
survey_names = []
number_of_observations = 0
setup_ids = []
for survey_name, setup_data in self.setups.items():
setup_df = setup_data['setup_df']
self.observed_stations = self.observed_stations + setup_df['station_name'].to_list()
number_of_observations = number_of_observations + len(setup_df)
survey_names.append(survey_name)
setup_ids = setup_ids + setup_df['setup_id'].to_list()
self.observed_stations = misc.unique_ordered_list(
self.observed_stations) # Unique list of stations => order of stations in matrices!
number_of_stations = len(self.observed_stations)
number_of_surveys = len(self.setups)
# Total number of parameters to be estimated:
# - 1 g value per station
# - Drift polynomial coeff. per survey: Polynomial degree * number of surveys
# - 1 constant instrumental bias per survey
number_of_parameters = number_of_stations + drift_pol_degree * number_of_surveys + number_of_surveys
# number_of_diff_obs = number_of_observations - number_of_surveys
# Check, if setup IDs are unique:
self.check_unique_setups(setup_ids)
# - Datum points for weighted constraints:
# Get dataframe with subset of observed stations only:
filter_tmp = self.stat_df['station_name'].isin(self.observed_stations)
self.stat_obs_df = self.stat_df.loc[filter_tmp].copy(deep=True) # All observed stations
stat_df_obs_datum = self.stat_obs_df.loc[self.stat_obs_df['is_datum']]
datum_stations = stat_df_obs_datum['station_name'].to_list()
number_of_datum_stations = len(datum_stations)
if number_of_datum_stations < 1:
raise AssertionError('None of the observed (and active) stations is a datum station '
'(minimum one is required)!')
if stat_df_obs_datum.loc[:, 'g_mugal'].isnull().any() or stat_df_obs_datum.loc[:, 'sd_g_mugal'].isnull().any():
raise AssertionError('g and/or sd(g) is missing for at least one datum station! Both values are required'
'for ALL datum stations.')
if verbose or self.write_log:
time_now_str = dt.datetime.now(tz=pytz.UTC).strftime('%Y-%m-%d, %H:%M:%S %Z')
tmp_str = f'#### Adjustment log (non-differential LSM) ####\n'
tmp_str += f'Processed with GravTools {GRAVTOOLS_VERSION} ({time_now_str})\n'
tmp_str += f'Comment: {self.comment}\n'
tmp_str += f'\n'
tmp_str += f'---- Input data and settings ----\n'
tmp_str += f'Method: {settings.ADJUSTMENT_METHODS[self.lsm_method]}\n'
tmp_str += f'Number of surveys: {number_of_surveys}\n'
tmp_str += f'Number of stations: {number_of_stations}\n'
tmp_str += f'Number of observations: {number_of_observations}\n'
tmp_str += f'Number of estimated parameters: {number_of_parameters}\n'
tmp_str += f'Number of datum stations: {number_of_datum_stations}\n'
tmp_str += f'Degree of freedom (w/o datum constraints): {number_of_observations - number_of_parameters}\n'
tmp_str += f'Degree of freedom (with datum constraints): {number_of_observations - number_of_parameters + number_of_datum_stations}\n'
tmp_str += f'\n'
tmp_str += f'Degree of drift polynomial: {drift_pol_degree}\n'
tmp_str += f'One reference epoch for each: {drift_ref_epoch_type}\n'
tmp_str += f'A priori std. deviation of unit weight [µGal]: {sig0_mugal}\n'
tmp_str += f'Scaling factor for datum constraints: {scaling_factor_datum_observations}\n'
tmp_str += f'Scaling factor for SD of setup observations: {scaling_factor_for_sd_of_observations}\n'
tmp_str += f'Additive const. to SD of setup obs. [µGal]: {add_const_to_sd_of_observations_mugal}\n'
tmp_str += f'Noise floor for std. error determination [µGal]: {noise_floor_mugal}\n'
tmp_str += f'Confidence level Chi-test: {confidence_level_chi_test:4.2f}\n'
tmp_str += f'Confidence level Tau-test: {confidence_level_tau_test:4.2f}\n'
tmp_str += f'\n'
tmp_str += f'---- Survey infos ----\n'
tmp_str += self.survey_info_string
tmp_str += f'\n'
tmp_str += f'\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# Initialize matrices:
if verbose or self.write_log:
tmp_str = f'---- Set up and populate matrices ----\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# => Initialize complete matrices first and then populate them. This is most efficient!
# - Observation model:
mat_A0 = np.zeros([number_of_observations, number_of_parameters]) # Model-matrix
mat_L0 = np.zeros((number_of_observations, 1))
mat_sig_ll0 = np.zeros(number_of_observations)
# - Constraints:
mat_Ac = np.zeros([number_of_datum_stations, number_of_parameters]) # Model-matrix for constraints
mat_Lc = np.zeros((number_of_datum_stations, 1))
# => Convert to diagonal matrix: P0 = np.diag(np.array([1,2,3,4])) = np.diag(mat_p0)
mat_sig_llc = np.zeros(number_of_datum_stations)
# Populate matrices:
obs_id = -1 # Index of differential observations in vectors mat_L0, rows of mat_A0 and mat_p0
pd_drift_col_offset = number_of_stations - 1 # Column offset for drift parameters in A-matrix
survey_count = -1 # Survey counter for indexing the drift parameters in the A-matrix
g_obs_mugal_list = []
station_name_list = []
setup_id_list = []
sd_g_obs_mugal_list = []
obs_id_list = []
survey_names_list = []
ref_epoch_dt_list = [] # Reference epochs (datetime objects) of observations
for survey_name, setup_data in self.setups.items():
setup_df = setup_data['setup_df']
survey_count += 1
# Scale and manipulate the SD of setup observations in order to adjust their weights in the adjustment:
# - Apply scaling factor to SD of setup observations:
setup_df['sd_g_mugal'] = setup_df['sd_g_mugal'] * scaling_factor_for_sd_of_observations
# - Add additive constant to SD of setup observations in order to scale them to realistic values:
setup_df['sd_g_mugal'] = setup_df['sd_g_mugal'] + add_const_to_sd_of_observations_mugal
if (setup_df['sd_g_mugal'] < 0).any():
raise AssertionError(
f'ERROR: SD of observations ("sd_g_mugal") in survey {survey_name} <= 0 are not allowed! This '
f'may be due to the scaling of the SD of observations with additive factors.')
for index, row in setup_df.iterrows():
obs_id += 1 # Increment diff. observation ID
g_obs_mugal = row['g_mugal']
sd_g_obs_mugal = row['sd_g_mugal']
station_name = row['station_name']
setup_id = row['setup_id']
if drift_ref_epoch_type == 'survey':
delta_t_h = row['delta_t_h'] # [hours]
elif drift_ref_epoch_type == 'campaign':
delta_t_h = row['delta_t_campaign_h'] # [hours]
ref_epoch_dt = row['epoch_dt']
# Populate matrices and vectors:
mat_L0[(obs_id, 0)] = g_obs_mugal
mat_sig_ll0[obs_id] = sd_g_obs_mugal ** 2
# Partial derivative for g at stations:
mat_A0[obs_id, self.observed_stations.index(station_name)] = 1
# Partial derivative for drift polynomial including constant instrumental bias (pol. degree = 0):
for pd_drift_id in range(drift_pol_degree + 1):
mat_A0[obs_id, pd_drift_col_offset + pd_drift_id + 1 + survey_count * (drift_pol_degree + 1)] = \
delta_t_h ** pd_drift_id
# Log data in DataFrame:
g_obs_mugal_list.append(g_obs_mugal)
sd_g_obs_mugal_list.append(sd_g_obs_mugal)
station_name_list.append(station_name)
obs_id_list.append(obs_id)
survey_names_list.append(survey_name)
setup_id_list.append(setup_id)
ref_epoch_dt_list.append(ref_epoch_dt)
None_list_placeholder = [None] * len(survey_names_list)
self.setup_obs_df = pd.DataFrame(list(zip(survey_names_list,
ref_epoch_dt_list,
obs_id_list,
station_name_list,
setup_id_list,
g_obs_mugal_list,
sd_g_obs_mugal_list,
None_list_placeholder,
None_list_placeholder,
None_list_placeholder,
None_list_placeholder,
None_list_placeholder,
None_list_placeholder,
)),
columns=self._SETUP_OBS_COLUMNS)
self.setup_obs_df = self.setup_obs_df.astype(self._SETUP_OBS_COLUMNS_DTYPES)
# - constraints:
datum_station_id = -1
for index, row in stat_df_obs_datum.iterrows():
datum_station_id += 1
station_name = row['station_name']
station_id = self.observed_stations.index(station_name)
mat_Ac[datum_station_id, station_id] = 1 # Partial derivative
mat_Lc[(datum_station_id, 0)] = row['g_mugal'] # g for datum definition
sd_mugal_for_weighting = row['sd_g_mugal'] / scaling_factor_datum_observations
mat_sig_llc[datum_station_id] = sd_mugal_for_weighting ** 2
# Set up all required matrices:
mat_A = np.vstack((mat_A0, mat_Ac)) # Eq. (16)
mat_L = np.vstack((mat_L0, mat_Lc)) # Eq. (16)
mat_sig_ll = np.diag(np.hstack((mat_sig_ll0, mat_sig_llc)))
mat_Qll = mat_sig_ll / (sig0_mugal ** 2)
mat_P = np.linalg.inv(mat_Qll)
if verbose or self.write_log:
tmp_str = f'\n'
tmp_str += f'---- Results and statistics ----\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# Solve equation system:
mat_N = mat_A.T @ mat_P @ mat_A # Normal equation matrix
mat_Qxx = np.linalg.inv(mat_N) # Co-factor matrix of estimates
mat_x = mat_Qxx @ (mat_A.T @ mat_P @ mat_L) # Estimates
mat_v = (mat_A @ mat_x) - mat_L # Post-fit residuals
mat_v = misc.numpy_array_set_zero(mat_v, atol=1e-4)
mat_Qldld = mat_A @ mat_Qxx @ mat_A.T # A posteriori Co-factor matrix of adjusted observations
# mat_Qll = np.linalg.inv(mat_P)
mat_Qldld = misc.numpy_array_set_zero(mat_Qldld)
mat_Qvv = mat_Qll - mat_Qldld # Co-factor matrix of post-fit residuals
mat_Qvv = misc.numpy_array_set_zero(mat_Qvv)
# Test: "Gewichtsreziprokenprobe nach Ansermet" (see Skriptum AG1, p. 136, Eq. (6.86))
u = np.sum(np.diag((mat_P @ mat_Qldld))) # number of unknown parameters (estimates)
tmp_diff = np.abs(number_of_parameters - u)
if np.abs(number_of_parameters - u) > settings.ANSERMET_DIFF_THRESHOLD:
raise AssertionError(f'"Gewichtsreziprokenprobe nach Ansermet" failed! Difference = {tmp_diff}')
else:
if verbose or self.write_log:
tmp_str = f'# Gewichtsreziprokenprobe nach Ansermet (difference = {tmp_diff}) => Passed!\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# Condition of normal equation matrix:
if verbose or self.write_log:
cond = np.linalg.cond(mat_N)
tmp_str = f'Condition of normal equation matrix N = {cond:1.3f}\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# A posteriori variance of unit weight s02:
dof = mat_A.shape[0] - mat_A.shape[1] # degree of freedom
par_r = mat_v.T @ mat_P @ mat_v # = v^T * P * v
if dof == 0:
# s02_a_posteriori_mugal2 = par_r[0][0]
raise AssertionError('Degree of freedom has to be larger than 0!')
else:
s02_a_posteriori_mugal2 = par_r[0][0] / dof # Eq. (20)
s0_mugal = np.sqrt(s02_a_posteriori_mugal2) # A posteriori std. deviation of unit weight
if verbose or self.write_log:
tmp_str = f'\n'
tmp_str += f'A posteriori variance (sd) of unit weight: ' \
f'{s02_a_posteriori_mugal2:5.3f} ({s0_mugal:5.3f})\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# ### Statistics and tests ###
# Convert co-factor matrices to covariance matrices (variances in diagonal vector)
mat_Cvv = s02_a_posteriori_mugal2 * mat_Qvv # A posteriori Covariance matrix of post-fit residuals
mat_Cxx = s02_a_posteriori_mugal2 * mat_Qxx # A posteriori Covariance matrix of estimated parameters
mat_Cldld = s02_a_posteriori_mugal2 * mat_Qldld # A posteriori Covariance matrix of adjusted observations
# diag_Qxx = np.diag(mat_Qxx)
# Calculate standard deviations:
mat_sd_xx = np.sqrt(np.diag(mat_Cxx)) # A posteriori SD of estimates
mat_sd_ldld = np.sqrt(np.diag(mat_Cldld)) # A posteriori SD of adjusted observations
# A posteriori SD of residuals:
# - Check just in case, whether all diagonal elements of the Qvv matrix are positive!
if (np.diag(mat_Qvv) < 0).any():
mat_sd_vv = np.sqrt(np.diag(abs(mat_Cvv)))
if verbose or self.write_log:
tmp_str = f' - Warning: At least one diagonal element of the Qvv matrix is negative!\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
else:
mat_sd_vv = np.sqrt(np.diag(mat_Cvv))
# creating histogram from residuals
residual_hist, bin_edges = create_hist(mat_v) # Calculate histogram
# goodness-of-fit test
chi_crit, chi_val, chi_test = global_model_test(confidence_level_chi_test, dof,
s02_a_posteriori_mugal2, sig0_mugal ** 2)
if verbose or self.write_log:
tmp_str = f'\n'
tmp_str += f'# Goodness-of-fit test results:\n'
tmp_str += f'# Chi-val Chi-crt-lower Chi-crt-upper Status\n'
tmp_str += f' {chi_val:7.3f} {chi_crit[0]:13.3f} {chi_crit[1]:13.3f} {chi_test:s}\n'
tmp_str += f'\n'
tmp_str += f'# Histogram of the residuals:\n'
tmp_str += f'# Lower-edge(µGal) Upper-edge(µGal) Frequency\n'
for loop_1 in range(len(residual_hist)):
tmp_str += f' {bin_edges[loop_1]:16.4f} {bin_edges[loop_1 + 1]:16.4f} {residual_hist[loop_1]:9.0f}\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# outlier detection effectiveness (redundancy components)
# diag_Qvv = np.diag(mat_Qvv)
# mat_R = np.diag(mat_P) * diag_Qvv
# mat_R is exactly the same as "mat_r"
# Redundanzanteile (redundancy components):
# - AG II, pp. 66-71
mat_r = np.diag(mat_Qvv @ mat_P)
# Standardized residuals used as test statistics for outlier detection:
# - AG II, p. 66
# - Taking care of zero-elements in the mat_sd_vv vector to prevent division by zero errors!
mat_w = np.zeros(len(mat_v))
tmp_filter = ~np.isclose(mat_v[:, 0], 0.0)
mat_w[tmp_filter] = mat_v[tmp_filter, 0] / mat_sd_vv[tmp_filter]
# Tau test for outlier detection:
alpha_tau = 1 - confidence_level_tau_test
tau_test_result, tau_critical_value = tau_test(mat_w=mat_w, dof=dof, alpha=alpha_tau, mat_r=mat_r)
number_of_outliers = tau_test_result.count("failed")
tau_test_result_obs = tau_test_result[:number_of_observations]
tau_test_result_pseudo_obs = tau_test_result[number_of_observations:]
if verbose or self.write_log:
tmp_str = f'\n'
tmp_str += f'# Tau-test results:\n'
tmp_str += f'Critical value: {tau_critical_value:1.3f}\n'
tmp_str += f' - Number of detected outliers: {number_of_outliers}\n'
tmp_str += f' - Number of detected outliers (observations): {tau_test_result_obs.count("failed")}\n'
tmp_str += f' - Number of detected outliers (datum constraints): {tau_test_result_pseudo_obs.count("failed")}\n'
tmp_str += f' - Number low redundancy component: {tau_test_result.count("r too small")}\n'
tmp_str += f'\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# blunder detection parameters calculation
# sv_tau = 1 - confidence_level_tau_test
# std_res, tau_val, tau_crt = tau_criterion_test(diag_Qvv, mat_r, mat_v, s02_a_posteriori_mugal2, dof, sv_tau)
# #### Store results ####
g_est_mugal = mat_x[0:number_of_stations, 0]
sd_g_est_mugal = mat_sd_xx[0:number_of_stations]
drift_pol_coeff = mat_x[number_of_stations:, 0]
drift_pol_coeff_sd = mat_sd_xx[number_of_stations:]
sd_g_obs_est_mugal = mat_sd_ldld[:number_of_observations]
sd_pseudo_obs_est_mugal = mat_sd_ldld[number_of_observations:]
v_obs_est_mugal = mat_v[:number_of_observations, 0]
sd_v_obs_est_mugal = mat_sd_vv[:number_of_observations]
v_pseudo_obs_mugal = mat_v[number_of_observations:, 0]
# sd_v_pseudo_obs_mugal = mat_sd_vv[number_of_observations:] # Not used
w_obs_est_mugal = mat_w[:number_of_observations]
w_pseudo_obs_mugal = mat_w[number_of_observations:]
r_obs_est = mat_r[:number_of_observations]
r_pseudo_obs = mat_r[number_of_observations:]
# Station related results:
for idx, stat_name in enumerate(self.observed_stations):
filter_tmp = self.stat_obs_df['station_name'] == stat_name
self.stat_obs_df.loc[filter_tmp, 'g_est_mugal'] = g_est_mugal[idx]
self.stat_obs_df.loc[filter_tmp, 'sd_g_est_mugal'] = sd_g_est_mugal[idx]
self.stat_obs_df.loc[filter_tmp, 'se_g_est_mugal'] = np.sqrt(
sd_g_est_mugal[idx] ** 2 + noise_floor_mugal ** 2)
# Calculate differences to estimates:
self.stat_obs_df['diff_g_est_mugal'] = self.stat_obs_df['g_est_mugal'] - self.stat_obs_df['g_mugal']
self.stat_obs_df['diff_se_g_est_mugal'] = self.stat_obs_df['se_g_est_mugal'] - self.stat_obs_df['sd_g_mugal']
# Drift parameters:
survey_name_list = []
degree_list = []
coefficient_list = []
sd_coeff_list = []
coeff_unit_list = []
ref_epoch_t0_dt_list = []
tmp_idx = 0
x_estimate_drift_coeff_names = []
for survey_name, setup_data in self.setups.items():
for degree in range(drift_pol_degree + 1):
survey_name_list.append(survey_name)
degree_list.append(degree) # starts with 1
coefficient_list.append(drift_pol_coeff[tmp_idx]) # * (3600**(degree + 1)) # [µGal/h]
sd_coeff_list.append(drift_pol_coeff_sd[tmp_idx])
if drift_ref_epoch_type == 'survey':
ref_epoch_t0_dt_list.append(setup_data['ref_epoch_delta_t_h'])
elif drift_ref_epoch_type == 'campaign':
ref_epoch_t0_dt_list.append(setup_data['ref_epoch_delta_t_campaign_h'])
else:
ref_epoch_t0_dt_list.append(None) # Should not happen!
if degree == 0:
coeff_unit_list.append(f'µGal')
else:
coeff_unit_list.append(f'µGal/h^{degree}')
tmp_idx += 1
x_estimate_drift_coeff_names.append(f'{survey_name}-{degree}')
self.drift_pol_df = pd.DataFrame(list(zip(survey_name_list,
degree_list,
coefficient_list,
sd_coeff_list,
coeff_unit_list,
ref_epoch_t0_dt_list)),
columns=self._DRIFT_POL_DF_COLUMNS)
for idx, v_obs_mugal in enumerate(v_obs_est_mugal):
filter_tmp = self.setup_obs_df['obs_id'] == idx
self.setup_obs_df.loc[filter_tmp, 'v_obs_est_mugal'] = v_obs_mugal
self.setup_obs_df.loc[filter_tmp, 'sd_v_obs_est_mugal'] = sd_v_obs_est_mugal[idx]
self.setup_obs_df.loc[filter_tmp, 'sd_g_obs_est_mugal'] = sd_g_obs_est_mugal[idx]
self.setup_obs_df.loc[filter_tmp, 'w_obs_est_mugal'] = w_obs_est_mugal[idx] # standardized residuals
self.setup_obs_df.loc[filter_tmp, 'r_obs_est'] = r_obs_est[idx] # redundancy components
self.setup_obs_df.loc[filter_tmp, 'tau_test_result'] = tau_test_result_obs[idx] # str
# Print results to terminal:
if verbose or self.write_log:
tmp_str = f'\n'
tmp_str += f' - Station data:\n'
tmp_str += self.stat_obs_df[['station_name', 'is_datum', 'g_mugal', 'g_est_mugal',
'diff_g_est_mugal', 'sd_g_mugal',
'sd_g_est_mugal', 'se_g_est_mugal']].to_string(index=False,
float_format=lambda
x: '{:.1f}'.format(x))
tmp_str += f'\n\n'
tmp_str += f' - Drift polynomial coefficients:\n'
tmp_str += self.drift_pol_df.to_string(index=False, float_format=lambda x: '{:.6f}'.format(x))
tmp_str += f'\n\n'
tmp_str += f' - Observations:\n'
for survey_name in survey_names:
filter_tmp = self.setup_obs_df['survey_name'] == survey_name
tmp_str += f' - Survey: {survey_name}\n'
tmp_str += self.setup_obs_df.loc[filter_tmp, ['station_name', 'g_obs_mugal',
'sd_g_obs_mugal', 'sd_g_obs_est_mugal',
'v_obs_est_mugal']].to_string(index=False,
float_format=lambda
x: '{:.1f}'.format(x))
tmp_str += f'\n\n'
tmp_str += f' - Pseudo observations at datum stations (constraints):\n'
tmp_str += f'Station name sd [µGal] v [µGal] w [µGal] r [0-1] Tau test result\n'
for idx, station_name in enumerate(datum_stations):
tmp_str += f'{station_name:10} {sd_pseudo_obs_est_mugal[idx]:8.3} {v_pseudo_obs_mugal[idx]:+8.3} {w_pseudo_obs_mugal[idx]:+5.3} {r_pseudo_obs[idx]:+5.3} {tau_test_result_pseudo_obs[idx]}\n'
if verbose:
print(tmp_str)
if self.write_log:
self.log_str += tmp_str
# Save data/infos to object for later use:
self.drift_polynomial_degree = drift_pol_degree
self.sig0_a_priori = sig0_mugal
self.scaling_factor_datum_observations = scaling_factor_datum_observations
self.confidence_level_chi_test = confidence_level_chi_test
self.confidence_level_tau_test = confidence_level_chi_test
self.number_of_stations = number_of_stations
self.number_of_datum_stations = number_of_datum_stations
self.number_of_estimates = number_of_parameters
self.degree_of_freedom = dof
self.s02_a_posteriori = s02_a_posteriori_mugal2
self.Cxx = mat_Cxx
self.x_estimate_names = self.observed_stations + x_estimate_drift_coeff_names
self.global_model_test_status = chi_test
self.number_of_outliers = number_of_outliers
self.drift_ref_epoch_type = drift_ref_epoch_type
def export_obs_results_shapefile(self, filename, epsg_code, verbose=True):
"""Export observation-related results from the `setup_obs_df` dataframe to a shapefile.
Notes
-----
This method relies on the optional module `geopandas` (optional dependency).
Parameters
---------
filename : str
Name and path of the output shapefile.
epsg_code: int
EPSG code of the station coordinates' CRS.
verbose : bool, optional (default=False)
`True` implies that status messages are printed to the command line.
"""
if not _has_geopandas:
raise ImportError(f'Optional dependency "geopandas" not available, but needed for writing shapefiles!')
if verbose:
print(f'Save observation results of lsm run "{self.comment}" to: {filename}')
setup_obs_df = self.setup_obs_df.copy(deep=True)
# Change dtypes (just to be saved!):
setup_obs_df = setup_obs_df.astype(self._SETUP_OBS_COLUMNS_DTYPES)
setup_obs_df['comment'] = self.comment
# Get coordinates:
stat_obs_df_short = self.stat_obs_df[['station_name', 'long_deg', 'lat_deg']].copy(deep=True)
setup_obs_df = setup_obs_df.merge(stat_obs_df_short, left_on='station_name', right_on='station_name',
how='left')
# Rename columns to short names with max 10 chars suitable for shapefiles:
setup_obs_df.rename(columns=self._SETUP_OBS_COLUMNS_SHORT, inplace=True)
setup_obs_df.drop(columns=['epoch_dt'], inplace=True) # datetime fields cannot be converted to shapefiles!
setup_obs_gdf = geopandas.GeoDataFrame(setup_obs_df,
geometry=geopandas.points_from_xy(setup_obs_df['long_deg'],
setup_obs_df['lat_deg']),
crs=epsg_code)
setup_obs_gdf.to_file(filename)
|