satdump/plugins/mats_support/mats/module_mats_instruments.cpp
2023-11-15 16:08:17 -05:00

154 lines
No EOL
5.8 KiB
C++

#include "module_mats_instruments.h"
#include <fstream>
#include "common/ccsds/ccsds_standard/vcdu.h"
#include "logger.h"
#include <filesystem>
#include "imgui/imgui.h"
#include "common/utils.h"
#include "common/ccsds/ccsds_standard/demuxer.h"
#include "products/image_products.h"
#include "products/dataset.h"
namespace mats
{
namespace instruments
{
MATSInstrumentsDecoderModule::MATSInstrumentsDecoderModule(std::string input_file, std::string output_file_hint, nlohmann::json parameters)
: ProcessingModule(input_file, output_file_hint, parameters)
{
}
void MATSInstrumentsDecoderModule::process()
{
filesize = getFilesize(d_input_file);
std::ifstream data_in(d_input_file, std::ios::binary);
logger->info("Using input frames " + d_input_file);
time_t lastTime = 0;
uint8_t cadu[1279];
// Demuxers
ccsds::ccsds_standard::Demuxer demuxer_vcid1(1103, false);
// std::ofstream output("file.ccsds");
std::string mats_directory = d_output_file_hint.substr(0, d_output_file_hint.rfind('/'));
while (!data_in.eof())
{
// Read buffer
data_in.read((char *)&cadu, 1279);
// Parse this transport frame
ccsds::ccsds_standard::VCDU vcdu = ccsds::ccsds_standard::parseVCDU(cadu);
// logger->info(pkt.header.apid);
// logger->info(vcdu.vcid);
if (vcdu.vcid == 1) // Replay VCID
{
std::vector<ccsds::CCSDSPacket> ccsdsFrames = demuxer_vcid1.work(cadu);
for (ccsds::CCSDSPacket &pkt : ccsdsFrames)
{
if (pkt.header.apid == 100)
mats_reader.work(pkt, mats_directory);
}
}
progress = data_in.tellg();
if (time(NULL) % 10 == 0 && lastTime != time(NULL))
{
lastTime = time(NULL);
logger->info("Progress " + std::to_string(round(((double)progress / (double)filesize) * 1000.0) / 10.0) + "%%");
}
}
data_in.close();
// Products dataset
satdump::ProductDataSet dataset;
dataset.satellite_name = "MATS";
dataset.timestamp = time(0); // avg_overflowless(avhrr_reader.timestamps);
// NADIR Imager
{
mats_status = SAVING;
std::string directory = d_output_file_hint.substr(0, d_output_file_hint.rfind('/')) + "/Nadir";
if (!std::filesystem::exists(directory))
std::filesystem::create_directory(directory);
logger->info("----------- MATS Nadir");
logger->info("Lines : " + std::to_string(mats_reader.nadir_lines));
satdump::ImageProducts mats_nadir_products;
mats_nadir_products.instrument_name = "mats_nadir";
mats_nadir_products.has_timestamps = false;
// mats_nadir_products.set_tle(satellite_tle);
mats_nadir_products.bit_depth = 12;
mats_nadir_products.set_wavenumber(0, 1311.99);
// mats_nadir_products.timestamp_type = satdump::ImageProducts::TIMESTAMP_LINE;
// mats_nadir_products.set_timestamps(mhs_reader.timestamps);
// mats_nadir_products.set_proj_cfg(loadJsonFile(resources::getResourcePath("projections_settings/metop_abc_mhs.json")));
mats_nadir_products.images.push_back({"MATS-Nadir", "1", mats_reader.getNadirImage()});
mats_nadir_products.save(directory);
dataset.products_list.push_back("Nadir");
mats_status = DONE;
}
dataset.save(d_output_file_hint.substr(0, d_output_file_hint.rfind('/')));
}
void MATSInstrumentsDecoderModule::drawUI(bool window)
{
ImGui::Begin("MATS Instruments Decoder", NULL, window ? 0 : NOWINDOW_FLAGS);
if (ImGui::BeginTable("##matsinstrumentstable", 3, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg))
{
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("Instrument");
ImGui::TableSetColumnIndex(1);
ImGui::Text("Images / Frames");
ImGui::TableSetColumnIndex(2);
ImGui::Text("Status");
for (int i = 0; i < 7; i++)
{
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("MATS %s", mats::channel_names[i].c_str());
ImGui::TableSetColumnIndex(1);
ImGui::TextColored(ImColor(0, 255, 0), "%d", mats_reader.img_cnts[i]);
ImGui::TableSetColumnIndex(2);
drawStatus(mats_status);
}
ImGui::EndTable();
}
ImGui::ProgressBar((double)progress / (double)filesize, ImVec2(ImGui::GetWindowWidth() - 10, 20 * ui_scale));
ImGui::End();
}
std::string MATSInstrumentsDecoderModule::getID()
{
return "mats_instruments";
}
std::vector<std::string> MATSInstrumentsDecoderModule::getParameters()
{
return {};
}
std::shared_ptr<ProcessingModule> MATSInstrumentsDecoderModule::getInstance(std::string input_file, std::string output_file_hint, nlohmann::json parameters)
{
return std::make_shared<MATSInstrumentsDecoderModule>(input_file, output_file_hint, parameters);
}
} // namespace amsu
} // namespace metop