1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#include "core/plugin.h"
#include "logger.h"
#include "core/module.h"
#include "products/image_products.h"
#include "terra/module_terra_db_demod.h"
#include "aqua/module_aqua_db_decoder.h"
#include "eos/module_eos_instruments.h"
#include "eos/instruments/modis/calibrator/modis_calibrator.h"
#include "eos/instruments/modis/day_fire.h"
class EOSSupport : public satdump::Plugin
{
public:
std::string getID()
{
return "eos_support";
}
void init()
{
satdump::eventBus->register_handler<RegisterModulesEvent>(registerPluginsHandler);
satdump::eventBus->register_handler<satdump::ImageProducts::RequestCalibratorEvent>(provideImageCalibratorHandler);
satdump::eventBus->register_handler<satdump::RequestCppCompositeEvent>(provideCppCompositeHandler);
}
static void registerPluginsHandler(const RegisterModulesEvent &evt)
{
REGISTER_MODULE_EXTERNAL(evt.modules_registry, aqua::AquaDBDecoderModule);
REGISTER_MODULE_EXTERNAL(evt.modules_registry, terra::TerraDBDemodModule);
REGISTER_MODULE_EXTERNAL(evt.modules_registry, eos::instruments::EOSInstrumentsDecoderModule);
}
static void provideImageCalibratorHandler(const satdump::ImageProducts::RequestCalibratorEvent &evt)
{
if (evt.id == "eos_modis")
evt.calibrators.push_back(std::make_shared<eos::modis::EosMODISCalibrator>(evt.calib, evt.products));
}
static void provideCppCompositeHandler(const satdump::RequestCppCompositeEvent &evt)
{
if (evt.id == "day_fire")
evt.compositors.push_back(modis::dayFireCompositor);
}
};
PLUGIN_LOADER(EOSSupport)
|