We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is an issue to collect requirements and design ideas for the ESM-Tools database and catalogues
>>> import esm_tools.database >>> db = esm_tools.database.Database(user, password) >>> db.find(model_name="AWICM3", expid=".*piControl.*") [List of SimulationResult] # ??
$ esm-tools database register_run <path>
or from Python
>>> import esm_tools.database >>> db = ... >>> db.register(path) # Should contain a finished_config.yaml somewhere in path
Centralized database
graph TD RunA --> UserA RunB --> UserA RunC --> UserA RunD --> UserB RunE --> UserB UserA --> GroupA UserB --> GroupA GroupB GroupA --> MachineA GroupB --> MachineA MachineA --> VM MachineB --> VM
In Python:
import intake cat = intake.open_catalog("http://global_catalog.yml") # On DKRZ: cat = intake.open_catalog(["https://dkrz.de/s/intake"]) my_run = cat["RunA"] list(my_run) ["/some/path/with/RunA/thetao.fesom.1850.01.nc"] ds = my_run.load()
Group by groups, user, machine, projects,
The text was updated successfully, but these errors were encountered:
pgierz
No branches or pull requests
Intake and Database
This is an issue to collect requirements and design ideas for the ESM-Tools database and catalogues
Requirements
$ esm-tools database register_run <path>
or from Python
Centralized database
In Python:
Group by groups, user, machine, projects,
Ideas
Nice to have
TODO
The text was updated successfully, but these errors were encountered: