# http://pyrocko.org - GPLv3 # # The Pyrocko Developers, 21st Century # ---|P------/S----------~Lg----------
DateTimestamp)
''' Component of a GNSSStation ''' choices=['mm', 'cm', 'm'], help='Unit of displacement', default='m')
default=0., help='Component\'s shift in unit')
default=0., help='One sigma uncertainty of the measurement')
raise AttributeError('Other has to be of instance %s' % self.__class__)
self.shift += other.shift self.sigma = math.sqrt(self.sigma**2 + other.sigma**2) return self
''' Representation of a GNSS station during a campaign measurement
For more information see http://kb.unavco.org/kb/assets/660/UNAVCO_Campaign_GPS_GNSS_Handbook.pdf '''
help='Four letter station code', optional=True)
choices=['static', 'rapid_static', 'kinematic'], default='static')
optional=True, help='Survey start time')
optional=True, help='Survey end time')
default=0., help='North-East component correlation')
default=0., help='East-Up component correlation')
default=0., help='North-Up component correlation')
optional=True)
optional=True)
optional=True)
try: return self.code == other.code except AttributeError: return False
# This floating point operation is inaccurate: # corr * comp1.sigma * comp2.sigma != corr * comp2.sigma * comp1.sigma # # Hence this identity covar[num.triu_indices_from(covar, k=1)]
[c.sigma for c in components])
# See comment at get_covariance_matrix corr[num.triu_indices_from(corr, k=1)]
return num.array([c.shift for c in self.components.values()])
[False if self.__getattribute__(name) is None else True for name in ('north', 'east', 'up')], dtype=num.bool)
def components(self): [(name, self.__getattribute__(name)) for name in ('north', 'east', 'up') if self.__getattribute__(name) is not None])
def ncomponents(self):
(s.north, s.east): s.correlation_ne, (s.east, s.up): s.correlation_eu, (s.north, s.up): s.correlation_nu }
(comp1, comp2), correlation_map.get((comp2, comp1), False))
GNSSStation.T(), help='List of GNSS campaign measurements')
help='Campaign name', default='Unnamed campaign')
optional=True)
optional=True)
try: station = self.get_station(station_code) self.stations.remove(station) self._cor_mat = None self._cov_mat = None except ValueError: logger.warn('Station {} does not exist in campaign, ' 'do nothing.'.format(station_code))
for sta in self.stations: if sta.code == station_code: return sta raise ValueError('Could not find station %s' % station_code)
return od.geographic_midpoint_locations(self.stations)
coords = self.coordinates return od.distance_accurate50m( coords[:, 0].min(), coords[:, 1].min(), coords[:, 0].max(), coords[:, 1].max()) / 2.
sta.get_covariance_matrix()
sta.get_correlation_matrix()
return num.concatenate( [s.get_component_mask() for s in self.stations])
def coordinates(self): return num.array([loc.effective_latlon for loc in self.stations])
def nstations(self): return len(self.stations)
def ncomponents(self): |