FV3Config

https://readthedocs.org/projects/fv3config/badge/?version=latest https://circleci.com/gh/VulcanClimateModeling/fv3config.svg?style=svg

FV3Config is used to configure and manipulate run directories for FV3GFS.

  • Free software: BSD license

Basic usage

import fv3config

with open("config.yml", "r") as f:
    config = fv3config.load(f)
fv3config.write_run_directory(config, './rundir')

config is a configuration dictionary which contains namelists, input data specifications, and other options. It can be edited just like any dictionary.

For more in-depth usage, please refer to the documentation. This can be generated with make docs.