mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
59 lines
No EOL
2.7 KiB
C++
59 lines
No EOL
2.7 KiB
C++
#include "instruments/avhrr/avhrr_calibrator.h"
|
|
#include "instruments/mhs/mhs_calibrator.h"
|
|
#include "metop/instruments/ascat/ascat_calibrator.h"
|
|
#include "metop/instruments/iasi/iasi_img_calibrator.h"
|
|
#include "noaa/instruments/hirs/hirs_calibrator.h"
|
|
|
|
#include "core/plugin.h"
|
|
|
|
#include "metop/module_metop_ahrpt_decoder.h"
|
|
#include "metop/module_metop_dump_decoder.h"
|
|
#include "metop/module_metop_instruments.h"
|
|
|
|
#include "noaa/module_noaa_dsb_decoder.h"
|
|
#include "noaa/module_noaa_gac_decoder.h"
|
|
#include "noaa/module_noaa_hrpt_decoder.h"
|
|
#include "noaa/module_noaa_instruments.h"
|
|
|
|
#include "pipeline/module.h"
|
|
#include "products/image/image_calibrator.h"
|
|
|
|
class NOAAMetOpSupport : public satdump::Plugin
|
|
{
|
|
public:
|
|
std::string getID() { return "noaa_metop_support"; }
|
|
|
|
void init()
|
|
{
|
|
satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler);
|
|
satdump::eventBus->register_handler<satdump::products::RequestImageCalibratorEvent>(provideImageCalibratorHandler);
|
|
}
|
|
|
|
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt)
|
|
{
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, metop::MetOpAHRPTDecoderModule);
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, metop::MetOpDumpDecoderModule);
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, metop::instruments::MetOpInstrumentsDecoderModule);
|
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, noaa::NOAAHRPTDecoderModule);
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, noaa::NOAAGACDecoderModule);
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, noaa::NOAADSBDecoderModule);
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, noaa::instruments::NOAAInstrumentsDecoderModule);
|
|
}
|
|
|
|
static void provideImageCalibratorHandler(const satdump::products::RequestImageCalibratorEvent &evt)
|
|
{
|
|
if (evt.id == "noaa_avhrr3")
|
|
evt.calibrators.push_back(std::make_shared<noaa_metop::NoaaAVHRR3Calibrator>(evt.products, evt.calib));
|
|
else if (evt.id == "noaa_mhs" || evt.id == "noaa_amsu")
|
|
evt.calibrators.push_back(std::make_shared<noaa_metop::NoaaMHSCalibrator>(evt.products, evt.calib));
|
|
else if (evt.id == "metop_iasi_img")
|
|
evt.calibrators.push_back(std::make_shared<metop::iasi::MetOpIASIImagingCalibrator>(evt.products, evt.calib));
|
|
else if (evt.id == "metop_ascat")
|
|
evt.calibrators.push_back(std::make_shared<metop::ascat::MetOpASCATCalibrator>(evt.products, evt.calib));
|
|
else if (evt.id == "noaa_hirs")
|
|
evt.calibrators.push_back(std::make_shared<noaa_metop::NoaaHIRSCalibrator>(evt.products, evt.calib));
|
|
}
|
|
};
|
|
|
|
PLUGIN_LOADER(NOAAMetOpSupport) |