3 from shesha.util.writers
import common
7 """Return a json representation of the atmospheric parameters
10 sup : (CompassSupervisor) : supervisor to get the json representation from
13 "notice" : common.atmos_json_notice(),
14 "profiles" : [ common.atmos_to_json(sup.config.p_atmos)]
16 f = open(file_name,
"w")
17 f.write(json.dumps(atm_json,indent=4))
def write_json_atm_param(sup, *file_name="./atm-params.json")
Return a json representation of the atmospheric parameters.