#include "module_ldcm_instruments.h" #include #include "common/ccsds/ccsds_weather/vcdu.h" #include "logger.h" #include #include "imgui/imgui.h" #include "common/utils.h" #include "common/ccsds/ccsds_weather/demuxer.h" #include "products/image_products.h" #include "products/dataset.h" extern "C" { #include "libs/aec/szlib.h" } namespace ldcm { namespace instruments { LDCMInstrumentsDecoderModule::LDCMInstrumentsDecoderModule(std::string input_file, std::string output_file_hint, nlohmann::json parameters) : ProcessingModule(input_file, output_file_hint, parameters) { } void LDCMInstrumentsDecoderModule::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[1034]; // Demuxers ccsds::ccsds_weather::Demuxer demuxer_vcid5(1022, true, 0); ccsds::ccsds_weather::Demuxer demuxer_vcid12(1022, true, 0); // std::ofstream output("file.ccsds"); // std::ofstream idk_test_out(d_output_file_hint.substr(0, d_output_file_hint.rfind('/')) + "/test_idk.bin", std::ios::binary); while (!data_in.eof()) { // Read buffer data_in.read((char *)cadu, 1034); // Parse this transport frame ccsds::ccsds_weather::VCDU vcdu = ccsds::ccsds_weather::parseVCDU(cadu); // logger->info(pkt.header.apid); // logger->info(vcdu.vcid); if (vcdu.vcid == 5) // TIRS VCID { std::vector ccsdsFrames = demuxer_vcid5.work(cadu); for (ccsds::CCSDSPacket &pkt : ccsdsFrames) { // 1792, 1793, 1794, if (pkt.header.apid == 1792) tirs_reader1.work(pkt); else if (pkt.header.apid == 1793) tirs_reader2.work(pkt); else if (pkt.header.apid == 1794) tirs_reader3.work(pkt); // else // logger->error("%d %d", pkt.header.apid, pkt.payload.size()); } } #if 0 else if (vcdu.vcid == 12) // OLI VCID { std::vector ccsdsFrames = demuxer_vcid12.work(cadu); for (ccsds::CCSDSPacket &pkt : ccsdsFrames) { logger->error("%d %d", pkt.header.apid, pkt.payload.size()); if (pkt.header.apid == 299) { std::vector output_buf(6000 * 4); SZ_com_t opts; opts.bits_per_pixel = 16; opts.pixels_per_scanline = 6000; opts.pixels_per_block = 16; opts.options_mask = SZ_ALLOW_K13_OPTION_MASK | SZ_MSB_OPTION_MASK | SZ_NN_OPTION_MASK | SZ_RAW_OPTION_MASK; size_t outsize = output_buf.size(); int off = 20 - 6; SZ_BufftoBuffDecompress(output_buf.data(), &outsize, &pkt.payload[off], pkt.payload.size() - off, &opts); pkt.payload = output_buf; idk_test_out.write((char *)pkt.header.raw, 6); pkt.payload.resize(10000 - 6); idk_test_out.write((char *)pkt.payload.data(), pkt.payload.size()); } } } #endif 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 = "LandSat-8/9"; dataset.timestamp = time(0); // avg_overflowless(avhrr_reader.timestamps); // TIRS { tirs_status = SAVING; std::string directory = d_output_file_hint.substr(0, d_output_file_hint.rfind('/')) + "/TIRS"; if (!std::filesystem::exists(directory)) std::filesystem::create_directory(directory); logger->info("----------- TIRS"); logger->info("Lines 1 : " + std::to_string(tirs_reader1.lines)); logger->info("Lines 2 : " + std::to_string(tirs_reader2.lines)); logger->info("Lines 3 : " + std::to_string(tirs_reader3.lines)); satdump::ImageProducts tirs_products; tirs_products.instrument_name = "tirs"; tirs_products.has_timestamps = false; // tirs_products.set_tle(satellite_tle); tirs_products.bit_depth = 12; // tirs_products.set_wavenumber(0, 1311.99); // tirs_products.timestamp_type = satdump::ImageProducts::TIMESTAMP_LINE; // tirs_products.set_timestamps(mhs_reader.timestamps); // tirs_products.set_proj_cfg(loadJsonFile(resources::getResourcePath("projections_settings/metop_abc_mhs.json"))); for (int i = 0; i < 3; i++) tirs_products.images.push_back({"TIRS-" + std::to_string(i + 1), std::to_string(i + 1), tirs_reader1.getChannel(i)}); for (int i = 0; i < 3; i++) tirs_products.images.push_back({"TIRS-" + std::to_string(i + 4), std::to_string(i + 4), tirs_reader2.getChannel(i)}); for (int i = 0; i < 3; i++) tirs_products.images.push_back({"TIRS-" + std::to_string(i + 7), std::to_string(i + 7), tirs_reader3.getChannel(i)}); tirs_products.save(directory); dataset.products_list.push_back("TIRS"); tirs_status = DONE; } dataset.save(d_output_file_hint.substr(0, d_output_file_hint.rfind('/'))); } void LDCMInstrumentsDecoderModule::drawUI(bool window) { ImGui::Begin("MATS Instruments Decoder", NULL, window ? 0 : NOWINDOW_FLAGS); if (ImGui::BeginTable("##tirsinstrumentstable", 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"); ImGui::TableNextRow(); ImGui::TableSetColumnIndex(0); ImGui::Text("TIRS 1"); ImGui::TableSetColumnIndex(1); ImGui::TextColored(ImColor(0, 255, 0), "%d", tirs_reader1.lines); ImGui::TableSetColumnIndex(2); drawStatus(tirs_status); ImGui::TableNextRow(); ImGui::TableSetColumnIndex(0); ImGui::Text("TIRS 2"); ImGui::TableSetColumnIndex(1); ImGui::TextColored(ImColor(0, 255, 0), "%d", tirs_reader2.lines); ImGui::TableSetColumnIndex(2); drawStatus(tirs_status); ImGui::TableNextRow(); ImGui::TableSetColumnIndex(0); ImGui::Text("TIRS 3"); ImGui::TableSetColumnIndex(1); ImGui::TextColored(ImColor(0, 255, 0), "%d", tirs_reader3.lines); ImGui::TableSetColumnIndex(2); drawStatus(tirs_status); ImGui::EndTable(); } ImGui::ProgressBar((double)progress / (double)filesize, ImVec2(ImGui::GetWindowWidth() - 10, 20 * ui_scale)); ImGui::End(); } std::string LDCMInstrumentsDecoderModule::getID() { return "ldcm_instruments"; } std::vector LDCMInstrumentsDecoderModule::getParameters() { return {}; } std::shared_ptr LDCMInstrumentsDecoderModule::getInstance(std::string input_file, std::string output_file_hint, nlohmann::json parameters) { return std::make_shared(input_file, output_file_hint, parameters); } } // namespace amsu } // namespace metop