Install SeisComP and scanloc ARM64 nightly packages

This commit is contained in:
Enrico Ellguth
2025-10-29 12:34:04 +00:00
parent 2ff097f9d1
commit 165b829fb7
606 changed files with 24438 additions and 16358 deletions

View File

@ -26,6 +26,7 @@
#include <seiscomp/gui/map/mapwidget.h>
#ifndef Q_MOC_RUN
#include <seiscomp/datamodel/origin.h>
#include <seiscomp/datamodel/publicobjectcache.h>
#endif
#include <seiscomp/gui/qt.h>
@ -58,6 +59,10 @@ class SC_GUI_API OriginLocatorMap : public MapWidget {
OriginLocatorMap(Map::ImageTree* mapTree,
QWidget *parent = 0, Qt::WindowFlags f = Qt::WindowFlags());
public:
void setCache(DataModel::PublicObjectCache *cache);
//! Sets the maximum distance for stations to be displayed
//! if they are not part of the origin
void setStationsMaxDist(double);
@ -113,15 +118,16 @@ class SC_GUI_API OriginLocatorMap : public MapWidget {
private:
DataModel::OriginPtr _origin;
OriginSymbol *_originSymbol;
Map::Layer *_symbolLayer;
Map::AnnotationLayer *_annotationLayer;
bool _waveformPropagation{false};
bool _enabledCreateOrigin{false};
QVector<int> _arrivals;
std::map<std::string, int> _stationCodes;
double _stationsMaxDist{-1};
DataModel::PublicObjectCache *_cache{nullptr};
DataModel::OriginPtr _origin;
OriginSymbol *_originSymbol;
Map::Layer *_symbolLayer;
Map::AnnotationLayer *_annotationLayer;
bool _waveformPropagation{false};
bool _enabledCreateOrigin{false};
QVector<int> _arrivals;
std::map<std::string, int> _stationCodes;
double _stationsMaxDist{-1};
};