https://github.com/access-community-hub/access-om3-paper-1
Plotting notebooks and discussion for ACCESS-OM3 25km model description paper
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.6%) to scientific vocabulary
Repository
Plotting notebooks and discussion for ACCESS-OM3 25km model description paper
Basic Info
- Host: GitHub
- Owner: ACCESS-Community-Hub
- License: apache-2.0
- Language: Jupyter Notebook
- Default Branch: main
- Size: 9.62 MB
Statistics
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 23
- Releases: 0
Metadata Files
README.md
access-om3-paper-1
A collaborative project to create and discuss figures for a description and assessment paper(s) for ACCESS-OM3. Help is very welcome! Please see How it works below to get started.
The paper is being written here on Overleaf. Please ask Andrew if you'd like edit access (the link is "view only").
How it works
All community members (and ACCESS-NRI staff) can get write write access to this repository (our preference over using forks). To get write access, you need to create an issue and request access, please use this issue template.
All aspects of the project are tracked through issues. Create an issue to represent each small task, a single issue is used for each Figure. Issues will develop to include discussion of analysis methods and figures associated with each task. A mega-issue exists here to track all the evaluation metrics. Feel free to add new Figure-issues as sub-issues.
To start contributing to the code, you have two options:
1. push your code changes to main directly.
1. if you'd prefer for your code changes to be reviewed, you can create a new branch directly in this repository, make your changes there, and then open a pull request from your branch into main.
Detailed instructions
For the first option above omit the branch steps below. This is option 2:
- Clone this repository locally;
- Make a new branch with your name
git checkout -b claire; cdintonotebooks;- Copy the example notebook, and start hacking away;
- When ready to upload, do
git add <path to your notebook>,git commit -m "A helpful message"andgit push -u REMOTE_NAME branch_name(whereREMOTE_NAMEis the name of your GitHub remote, this defaults toorigin); - Make a PR on github to merge it into main
(This assumes you have write access to the repo, if you don't you'll need to ask for it.)
Guidelines for creating Figures
- Create an issue (one per figure) for Figure you are looking to create and add it as a sub-issue to the mega-issue here.
- When posting in the issue, please include path to notebook and the commit hash that created the Figure (also gives run information but you can include this in the post for convenience).
- Try to include OM2 comparison!
- Average over the last 10 years of the RYF run
- Suggestion: pcolor / contourf will handle NaNs in coordinate arrays (if you need pcolormesh/xgcm, use the hack)
- Once you've created your Figure / uploaded your notebook, please tick off your assigned task in the list.
- If it turns out it is not currently possible to complete the metric due to missing diagnostics. Please note that here so we can continue the existing run with the needed output. (Source)
Notebooks
Notebooks for figures should be in the notebooks folder. When starting a new notebook, please use the template here.
To allow us later to run all the notebooks at once, please use the boilerplate at the top of the script, namely this second cell: ```python
parameters
USER EDIT start
esmfile='/g/data/ol01/access-om3-output/access-om3-025/MC25kmjraryf-1.0-beta/experimentdatastore.json' plotfolder='/g/data/tm70/cyb561/access-om3-paper-1/notebooks/mkfigsoutput/2/' dpi=300
USER EDIT stop
import matplotlib as mpl import os %matplotlib inline mpl.rcParams['figure.dpi']= dpi
os.makedirs(plotfolder, exist_ok=True)
# a similar cell under this means it's being run in batch print("ESM datastore path: ",esm_file) print("Plot folder path: ",plotfolder) ```
It is important that you use esm_file and if needed plotfolder in your script as done in find_and_load_OM3_25km_ryf_1.0-beta.ipynb (this allows us to re-run your script later with different experiments), here's examples:
python
datastore = intake.open_esm_datastore(
esm_file,
columns_with_iterables=[
"variable",
"variable_long_name",
"variable_standard_name",
"variable_cell_methods",
"variable_units"
]
)
and plt.savefig(plotfolder+'exampleout.png'). This cell needs to have the tag parameters, copying this cell will copy the tag as well but you can also set this on other cells should you wish to parameterize other parts of the script. This allows us to pass in arguments externally using papermill (see mkfigs.sh for details)
TODO
TODO: As we figure out the main results and develop the storyline, we can add to the Results_summary.md and Figure_outline.md.
TODO: define common parameters - e.g. see here - experiment runs to use, and terminology for them - line styles - climatology start/end dates
Owner
- Name: ACCESS Community Hub
- Login: ACCESS-Community-Hub
- Kind: organization
- Email: access.nri@anu.edu.au
- Location: Australia
- Website: https://www.access-nri.org.au/
- Twitter: ACCESS_NRI
- Repositories: 1
- Profile: https://github.com/ACCESS-Community-Hub
Australian Earth System Simulator Community
GitHub Events
Total
- Create event: 5
- Commit comment event: 1
- Issues event: 6
- Delete event: 3
- Member event: 1
- Issue comment event: 29
- Push event: 23
- Pull request event: 9
- Pull request review event: 6
- Pull request review comment event: 4
- Fork event: 1
Last Year
- Create event: 5
- Commit comment event: 1
- Issues event: 6
- Delete event: 3
- Member event: 1
- Issue comment event: 29
- Push event: 23
- Pull request event: 9
- Pull request review event: 6
- Pull request review comment event: 4
- Fork event: 1
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 3
- Total pull requests: 7
- Average time to close issues: about 8 hours
- Average time to close pull requests: 1 day
- Total issue authors: 3
- Total pull request authors: 4
- Average comments per issue: 1.0
- Average comments per pull request: 2.43
- Merged pull requests: 5
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 3
- Pull requests: 7
- Average time to close issues: about 8 hours
- Average time to close pull requests: 1 day
- Issue authors: 3
- Pull request authors: 4
- Average comments per issue: 1.0
- Average comments per pull request: 2.43
- Merged pull requests: 5
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- wghuneke (1)
- minghangli-uni (1)
- aekiss (1)
Pull Request Authors
- chrisb13 (4)
- wghuneke (1)
- minghangli-uni (1)
- aekiss (1)