[seiscomp, scanloc] Install, add .gitignore
This commit is contained in:
109
include/seiscomp/seismology/locator/fixed-hypocenter.h
Normal file
109
include/seiscomp/seismology/locator/fixed-hypocenter.h
Normal file
@ -0,0 +1,109 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) gempa GmbH *
|
||||
* All rights reserved. *
|
||||
* Contact: gempa GmbH (seiscomp-dev@gempa.de) *
|
||||
* *
|
||||
* GNU Affero General Public License Usage *
|
||||
* This file may be used under the terms of the GNU Affero *
|
||||
* Public License version 3.0 as published by the Free Software Foundation *
|
||||
* and appearing in the file LICENSE included in the packaging of this *
|
||||
* file. Please review the following information to ensure the GNU Affero *
|
||||
* Public License version 3.0 requirements will be met: *
|
||||
* https://www.gnu.org/licenses/agpl-3.0.html. *
|
||||
* *
|
||||
* Other Usage *
|
||||
* Alternatively, this file may be used in accordance with the terms and *
|
||||
* conditions contained in a signed written agreement between you and *
|
||||
* gempa GmbH. *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#ifndef SEISCOMP_SEISMOLOGY_FIXED_HYPOCENTER_H
|
||||
#define SEISCOMP_SEISMOLOGY_FIXED_HYPOCENTER_H
|
||||
|
||||
|
||||
#include <seiscomp/core/exceptions.h>
|
||||
#include <seiscomp/datamodel/origin.h>
|
||||
#include <seiscomp/datamodel/arrival.h>
|
||||
#include <seiscomp/datamodel/pick.h>
|
||||
#include <seiscomp/datamodel/station.h>
|
||||
#include <seiscomp/seismology/locatorinterface.h>
|
||||
#include <seiscomp/seismology/ttt.h>
|
||||
#include <seiscomp/core.h>
|
||||
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
|
||||
namespace Seiscomp{
|
||||
namespace Seismology {
|
||||
|
||||
|
||||
class SC_SYSTEM_CORE_API FixedHypocenter : public LocatorInterface {
|
||||
// ----------------------------------------------------------------------
|
||||
// X'truction
|
||||
// ----------------------------------------------------------------------
|
||||
public:
|
||||
FixedHypocenter() = default;
|
||||
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
// Locator interface
|
||||
// ----------------------------------------------------------------------
|
||||
public:
|
||||
virtual bool init(const Config::Config &config) override;
|
||||
|
||||
//! Returns supported parameters to be changed.
|
||||
virtual IDList parameters() const override;
|
||||
|
||||
//! Returns the value of a parameter.
|
||||
virtual std::string parameter(const std::string &name) const override;
|
||||
|
||||
//! Sets the value of a parameter.
|
||||
virtual bool setParameter(const std::string &name,
|
||||
const std::string &value) override;
|
||||
|
||||
virtual IDList profiles() const override;
|
||||
virtual void setProfile(const std::string &name) override;
|
||||
|
||||
virtual int capabilities() const override;
|
||||
|
||||
virtual DataModel::Origin *locate(PickList& pickList) override;
|
||||
virtual DataModel::Origin *locate(PickList& pickList,
|
||||
double initLat, double initLon, double initDepth,
|
||||
const Seiscomp::Core::Time& initTime) override;
|
||||
|
||||
virtual DataModel::Origin *relocate(const DataModel::Origin* origin) override;
|
||||
|
||||
|
||||
private:
|
||||
enum Flag {
|
||||
UsePickUncertainties = 0x01,
|
||||
UseOriginUncertainties = 0x02
|
||||
};
|
||||
|
||||
// Configuration
|
||||
IDList _profiles;
|
||||
int _degreesOfFreedom{8};
|
||||
double _confidenceLevel{0.9};
|
||||
double _defaultTimeError{1.0};
|
||||
union {
|
||||
uint8_t _flags{UseOriginUncertainties};
|
||||
bool _legacyAndUnusedFlag;
|
||||
};
|
||||
bool _verbose{false};
|
||||
std::string _lastError;
|
||||
OPT(double) _initLat;
|
||||
OPT(double) _initLon;
|
||||
OPT(double) _initDepth;
|
||||
|
||||
// Runtime
|
||||
TravelTimeTableInterfacePtr _ttt;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif
|
158
include/seiscomp/seismology/locator/locsat.h
Normal file
158
include/seiscomp/seismology/locator/locsat.h
Normal file
@ -0,0 +1,158 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) gempa GmbH *
|
||||
* All rights reserved. *
|
||||
* Contact: gempa GmbH (seiscomp-dev@gempa.de) *
|
||||
* *
|
||||
* GNU Affero General Public License Usage *
|
||||
* This file may be used under the terms of the GNU Affero *
|
||||
* Public License version 3.0 as published by the Free Software Foundation *
|
||||
* and appearing in the file LICENSE included in the packaging of this *
|
||||
* file. Please review the following information to ensure the GNU Affero *
|
||||
* Public License version 3.0 requirements will be met: *
|
||||
* https://www.gnu.org/licenses/agpl-3.0.html. *
|
||||
* *
|
||||
* Other Usage *
|
||||
* Alternatively, this file may be used in accordance with the terms and *
|
||||
* conditions contained in a signed written agreement between you and *
|
||||
* gempa GmbH. *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#ifndef SEISCOMP_SEISMOLOGY_LOCSAT_H
|
||||
#define SEISCOMP_SEISMOLOGY_LOCSAT_H
|
||||
|
||||
|
||||
#include <seiscomp/core/exceptions.h>
|
||||
#include <seiscomp/datamodel/origin.h>
|
||||
#include <seiscomp/datamodel/arrival.h>
|
||||
#include <seiscomp/datamodel/pick.h>
|
||||
#include <seiscomp/datamodel/station.h>
|
||||
#include <seiscomp/seismology/locatorinterface.h>
|
||||
#include <seiscomp/core.h>
|
||||
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <stdio.h>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
|
||||
namespace Seiscomp{
|
||||
|
||||
|
||||
namespace Internal {
|
||||
|
||||
struct Locator_params;
|
||||
class LocSAT;
|
||||
class Loc;
|
||||
|
||||
}
|
||||
|
||||
|
||||
struct SC_SYSTEM_CORE_API LocSATErrorEllipsoid {
|
||||
LocSATErrorEllipsoid() {
|
||||
sxx=syy=szz=stt=sxy=sxz=syz=stx=sty=stz=sdobs=smajax=sminax=strike=sdepth=stime=conf=0.;
|
||||
}
|
||||
|
||||
float sxx;
|
||||
float syy;
|
||||
float szz;
|
||||
float stt;
|
||||
float sxy;
|
||||
float sxz;
|
||||
float syz;
|
||||
float stx;
|
||||
float sty;
|
||||
float stz;
|
||||
float sdobs;
|
||||
float smajax;
|
||||
float sminax;
|
||||
float strike;
|
||||
float sdepth;
|
||||
float stime;
|
||||
float conf;
|
||||
};
|
||||
|
||||
|
||||
class SC_SYSTEM_CORE_API LocSAT : public Seismology::LocatorInterface {
|
||||
public:
|
||||
LocSAT();
|
||||
virtual ~LocSAT();
|
||||
|
||||
virtual bool init(const Config::Config &config);
|
||||
|
||||
//! Returns supported parameters to be changed.
|
||||
virtual IDList parameters() const;
|
||||
|
||||
//! Returns the value of a parameter.
|
||||
virtual std::string parameter(const std::string &name) const;
|
||||
|
||||
//! Sets the value of a parameter.
|
||||
virtual bool setParameter(const std::string &name,
|
||||
const std::string &value);
|
||||
|
||||
virtual IDList profiles() const;
|
||||
virtual void setProfile(const std::string &name);
|
||||
|
||||
static void setDefaultProfile(const std::string &name);
|
||||
static std::string currentDefaultProfile();
|
||||
|
||||
void setNewOriginID(const std::string& newOriginID);
|
||||
|
||||
int capabilities() const;
|
||||
|
||||
DataModel::Origin* locate(PickList& pickList);
|
||||
DataModel::Origin* locate(PickList& pickList,
|
||||
double initLat, double initLon, double initDepth,
|
||||
const Seiscomp::Core::Time& initTime);
|
||||
|
||||
DataModel::Origin* relocate(const DataModel::Origin* origin);
|
||||
|
||||
const LocSATErrorEllipsoid &errorEllipsoid() const {
|
||||
return _errorEllipsoid;
|
||||
}
|
||||
|
||||
private:
|
||||
void setLocatorParams(int param, const char* value);
|
||||
std::string getLocatorParams(int param) const;
|
||||
void setDefaultLocatorParams();
|
||||
|
||||
bool loadArrivals(const DataModel::Origin* origin);
|
||||
DataModel::Origin *fromPicks(PickList& pickList);
|
||||
DataModel::Origin *loc2Origin(Internal::Loc* loc);
|
||||
|
||||
double stationCorrection(const std::string &staid, const std::string &stacode,
|
||||
const std::string &phase) const;
|
||||
|
||||
|
||||
private:
|
||||
typedef std::map<std::string, double> PhaseCorrectionMap;
|
||||
typedef std::map<std::string, PhaseCorrectionMap> StationCorrectionMap;
|
||||
|
||||
static std::string _defaultTablePrefix;
|
||||
static IDList _allowedParameters;
|
||||
|
||||
StationCorrectionMap _stationCorrection;
|
||||
std::string _newOriginID;
|
||||
std::string _tablePrefix;
|
||||
bool _computeConfidenceEllipsoid;
|
||||
Internal::LocSAT *_locateEvent;
|
||||
Internal::Locator_params *_locator_params;
|
||||
double _minArrivalWeight{0.5};
|
||||
double _defaultPickUncertainty;
|
||||
bool _usePickUncertainties{false};
|
||||
bool _usePickBackazimuth{true};
|
||||
bool _usePickSlowness{true};
|
||||
|
||||
bool _enableDebugOutput;
|
||||
|
||||
IDList _profiles;
|
||||
|
||||
LocSATErrorEllipsoid _errorEllipsoid;
|
||||
};
|
||||
|
||||
|
||||
}// of namespace Seiscomp
|
||||
|
||||
#endif
|
77
include/seiscomp/seismology/locator/utils.h
Normal file
77
include/seiscomp/seismology/locator/utils.h
Normal file
@ -0,0 +1,77 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) gempa GmbH *
|
||||
* All rights reserved. *
|
||||
* Contact: gempa GmbH (seiscomp-dev@gempa.de) *
|
||||
* *
|
||||
* GNU Affero General Public License Usage *
|
||||
* This file may be used under the terms of the GNU Affero *
|
||||
* Public License version 3.0 as published by the Free Software Foundation *
|
||||
* and appearing in the file LICENSE included in the packaging of this *
|
||||
* file. Please review the following information to ensure the GNU Affero *
|
||||
* Public License version 3.0 requirements will be met: *
|
||||
* https://www.gnu.org/licenses/agpl-3.0.html. *
|
||||
* *
|
||||
* Other Usage *
|
||||
* Alternatively, this file may be used in accordance with the terms and *
|
||||
* conditions contained in a signed written agreement between you and *
|
||||
* gempa GmbH. *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#ifndef SEISCOMP_SEISMOLOGY_LOCATOR_UTILS_H
|
||||
#define SEISCOMP_SEISMOLOGY_LOCATOR_UTILS_H
|
||||
|
||||
|
||||
namespace Seiscomp{
|
||||
|
||||
namespace DataModel {
|
||||
|
||||
class Origin;
|
||||
class OriginQuality;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Compiles an origin quality object from an origin.
|
||||
* Computed attributes:
|
||||
* * minimum distance
|
||||
* * median distance
|
||||
* * maximum distance
|
||||
* * azimuthal gap
|
||||
* * associated phase count
|
||||
* * used phase count
|
||||
* * depth phase count
|
||||
* * associated station count
|
||||
* * used station count
|
||||
*
|
||||
* Preconditions are:
|
||||
* * Arrivals must be present to generate phase counts
|
||||
* * Arrivals must have azimuth and distance set to generate azimuthal gap and
|
||||
* min/max/median distances
|
||||
* * Picks must be resolvable (Pick::Find) to update station counts
|
||||
*
|
||||
* Values that cannot be determined will not be written into the output quality,
|
||||
* meaning that this function will never set an output attribute to None.
|
||||
*
|
||||
* @param quality The output quality
|
||||
* @param origin The input origin
|
||||
*/
|
||||
void compile(DataModel::OriginQuality &quality, const DataModel::Origin *origin);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Convenience function which populates the origin quality of an origin
|
||||
* object.
|
||||
* If the origin holds already a quality object then it will be updated.
|
||||
* Otherwise a new quality object will be set.
|
||||
* @param origin The origin that will receive the quality object.
|
||||
*/
|
||||
void populateQuality(DataModel::Origin *origin);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user