Is your feature request related to a problem? Please describe.
Users have to pass a JSON formatted configuration file to start Taswira. This i
Describe the solution you'd like
I believe that we can make this configuration file optional by hard-coding a set of configs for all the common ecosystem indicators. We can build on the example config file that is available in the README:
[
{
"database_indicator": "NPP",
"file_pattern": "NPP*.tiff",
"graph_units": "Ktc",
"palette": "Greens"
},
{
"database_indicator": "NBP",
"file_pattern": "NBP*.tiff",
"palette": "Greens"
},
{
"database_indicator": "NEP",
"file_pattern": "NEP*.tiff",
"palette": "Reds"
},
{
"title": "AG Biomass",
"database_indicator": "Aboveground Biomass",
"file_pattern": "AG_Biomass_C_*.tiff",
"palette": "YlGnBu",
"graph_units": "Mtc"
}
]
Is your feature request related to a problem? Please describe.
Users have to pass a JSON formatted configuration file to start Taswira. This i
Describe the solution you'd like
I believe that we can make this configuration file optional by hard-coding a set of configs for all the common ecosystem indicators. We can build on the example config file that is available in the
README:[ { "database_indicator": "NPP", "file_pattern": "NPP*.tiff", "graph_units": "Ktc", "palette": "Greens" }, { "database_indicator": "NBP", "file_pattern": "NBP*.tiff", "palette": "Greens" }, { "database_indicator": "NEP", "file_pattern": "NEP*.tiff", "palette": "Reds" }, { "title": "AG Biomass", "database_indicator": "Aboveground Biomass", "file_pattern": "AG_Biomass_C_*.tiff", "palette": "YlGnBu", "graph_units": "Mtc" } ]