mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
Remove output level thing, never used and start new UI work
This commit is contained in:
parent
46c92a77fe
commit
b226a0832d
123 changed files with 591 additions and 854 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#include "logger.h"
|
||||
#include "module.h"
|
||||
#include "pipeline.h"
|
||||
#include "core/module.h"
|
||||
#include "core/pipeline.h"
|
||||
#include <filesystem>
|
||||
#include "nlohmann/json.hpp"
|
||||
#include <fstream>
|
||||
|
|
@ -12,7 +12,6 @@ namespace processing
|
|||
void process(std::string downlink_pipeline,
|
||||
std::string input_level,
|
||||
std::string input_file,
|
||||
std::string output_level,
|
||||
std::string output_file,
|
||||
nlohmann::json parameters)
|
||||
{
|
||||
|
|
@ -20,7 +19,7 @@ namespace processing
|
|||
|
||||
logger->info("Starting processing pipeline " + downlink_pipeline + "...");
|
||||
logger->debug("Input file (" + input_level + ") : " + input_file);
|
||||
logger->debug("Output file (" + output_level + ") : " + output_file);
|
||||
logger->debug("Output file : " + output_file);
|
||||
|
||||
if (!std::filesystem::exists(output_file))
|
||||
std::filesystem::create_directories(output_file);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue