You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
505 B
37 lines
505 B
2 years ago
|
#define MICHLIB_NOSOURCE
|
||
|
#include "GPL.h"
|
||
|
#include "odm.h"
|
||
|
|
||
|
int actioninfo(const CLArgs& args)
|
||
|
{
|
||
|
if(!args.contains("source"))
|
||
|
{
|
||
|
errmessage("No source specified!");
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
Data data;
|
||
|
|
||
|
if(args.at("source") == "NEMO")
|
||
|
{
|
||
|
NEMOData ndata = NEMOOpen(args);
|
||
|
|
||
|
if(!ndata)
|
||
|
{
|
||
|
errmessage("Can't open NEMO dataset");
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
data = DataVariants(std::move(ndata));
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
errmessage("Unknown source " + args.at("source"));
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
message(data.Info());
|
||
|
|
||
|
return 0;
|
||
|
}
|