SatDump 2.0.0-alpha-76a915210
Loading...
Searching...
No Matches
dataset.h
Go to the documentation of this file.
1#pragma once
2
7
8#include <string>
9#include <vector>
10
11namespace satdump
12{
13 namespace products
14 {
25 struct DataSet
26 {
27 std::string satellite_name;
28 double timestamp;
29 std::vector<std::string> products_list;
30
35 void save(std::string path);
36
41 void load(std::string path);
42 };
43 } // namespace products
44} // namespace satdump
SatDump dataset struct.
Definition dataset.h:26
void load(std::string path)
Load a dataset from a file.
Definition dataset.cpp:20
void save(std::string path)
Save a dataset to a file.
Definition dataset.cpp:10