You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the output from calling Mesan parameters is appalingly difficult to read (a json dictionary style list which does not read well). There should be a function which writes the names of the parameters similar to the Metobs parameters function.
from smhi.mesan import Mesan
client =Mesan()
client.parameters
#Reads better, example:
import pandas as pd
df = pd.DataFrame(client.parameters)
df["name"]
The text was updated successfully, but these errors were encountered:
Currently, the output from calling Mesan parameters is appalingly difficult to read (a json dictionary style list which does not read well). There should be a function which writes the names of the parameters similar to the Metobs parameters function.
The text was updated successfully, but these errors were encountered: