{"id":22197081,"url":"https://github.com/openscm/scmdata","last_synced_at":"2025-07-27T01:31:04.227Z","repository":{"id":39918786,"uuid":"217443745","full_name":"openscm/scmdata","owner":"openscm","description":"Handling of Simple Climate Model data","archived":false,"fork":false,"pushed_at":"2024-04-22T16:05:23.000Z","size":46525,"stargazers_count":8,"open_issues_count":37,"forks_count":5,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-11-18T22:28:58.451Z","etag":null,"topics":["climate","data","data-visualization"],"latest_commit_sha":null,"homepage":"https://scmdata.readthedocs.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openscm.png","metadata":{"files":{"readme":"README.md","changelog":"changelog/262.feat.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2019-10-25T03:29:45.000Z","updated_at":"2024-11-05T08:18:53.000Z","dependencies_parsed_at":"2023-09-24T09:17:47.835Z","dependency_job_id":"a89dce59-f87d-462d-9201-dc1d9dfdd6fd","html_url":"https://github.com/openscm/scmdata","commit_stats":{"total_commits":1287,"total_committers":8,"mean_commits":160.875,"dds":0.4972804972804973,"last_synced_commit":"7813392bf974ce9454975423518c9249200cd1f9"},"previous_names":[],"tags_count":49,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscm%2Fscmdata","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscm%2Fscmdata/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscm%2Fscmdata/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscm%2Fscmdata/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openscm","download_url":"https://codeload.github.com/openscm/scmdata/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227740662,"owners_count":17812687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["climate","data","data-visualization"],"created_at":"2024-12-02T14:18:20.584Z","updated_at":"2024-12-02T14:18:21.067Z","avatar_url":"https://github.com/openscm.png","language":"Python","readme":"# scmdata\n\n\u003c!---\nCan use start-after and end-before directives in docs, see\nhttps://myst-parser.readthedocs.io/en/latest/syntax/organising_content.html#inserting-other-documents-directly-into-the-current-document\n--\u003e\n\n\u003c!--- sec-begin-description --\u003e\n\n**scmdata** provides some useful data handling routines for dealing with data related to simple climate models\n(SCMs aka reduced complexity climate models, RCMs). In particular, it provides a high-performance way of\nhandling and serialising (including to netCDF) timeseries data along with attached metadata.\n\n**scmdata** was inspired by [pyam](https://github.com/IAMconsortium/pyam) and was originally part of the\n[openscm](https://github.com/openscm/openscm\u003e) package.\n\n[![CI](https://github.com/openscm/scmdata/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/openscm/scmdata/actions/workflows/ci.yaml)\n[![Coverage](https://codecov.io/gh/climate-resource/scmdata/branch/main/graph/badge.svg)](https://codecov.io/gh/openscm/scmdata)\n[![Docs](https://readthedocs.org/projects/scmdata/badge/?version=latest)](https://scmdata.readthedocs.io)\n\n**PyPI :**\n[![PyPI](https://img.shields.io/pypi/v/scmdata.svg)](https://pypi.org/project/scmdata/)\n[![PyPI: Supported Python versions](https://img.shields.io/pypi/pyversions/scmdata.svg)](https://pypi.org/project/scmdata/)\n[![PyPI install](https://github.com/openscm/scmdata/actions/workflows/install.yaml/badge.svg?branch=main)](https://github.com/openscm/scmdata/actions/workflows/install.yaml)\n\n**Other info :**\n[![License](https://img.shields.io/github/license/openscm/scmdata.svg)](https://github.com/openscm/scmdata/blob/main/LICENSE)\n[![Last Commit](https://img.shields.io/github/last-commit/openscm/scmdata.svg)](https://github.com/openscm/scmdata/commits/main)\n[![Contributors](https://img.shields.io/github/contributors/openscm/scmdata.svg)](https://github.com/openscm/scmdata/graphs/contributors)\n\n\n\u003c!--- sec-end-description --\u003e\n\nFull documentation can be found at:\n[scmdata.readthedocs.io](https://scmdata.readthedocs.io/en/latest/).\nWe recommend reading the docs there because the internal documentation links\ndon't render correctly on GitHub's viewer.\n\n## Installation\n\n\u003c!--- sec-begin-installation --\u003e\n\nscmdata can be installed with conda or pip:\n\n```bash\npip install scmdata\nconda install -c conda-forge scmdata\n```\n\nAdditional dependencies can be installed using\n\n```bash\n# To add plotting dependencies\npip install scmdata[plots]\n# To add notebook dependencies\npip install scmdata[notebooks]\n\n# If you are installing with conda, we recommend\n# installing the extras by hand because there is no stable\n# solution yet (issue here: https://github.com/conda/conda/issues/7502)\n```\n\n\u003c!--- sec-end-installation --\u003e\n\n### For developers\n\n\u003c!--- sec-begin-installation-dev --\u003e\n\nFor development, we rely on [poetry](https://python-poetry.org) for all our\ndependency management. To get started, you will need to make sure that poetry\nis installed\n([instructions here](https://python-poetry.org/docs/#installing-with-the-official-installer),\nwe found that pipx and pip worked better to install on a Mac).\n\nFor all of work, we use our `Makefile`.\nYou can read the instructions out and run the commands by hand if you wish,\nbut we generally discourage this because it can be error prone.\nIn order to create your environment, run `make virtual-envir˚onment`.\n\nIf there are any issues, the messages from the `Makefile` should guide you\nthrough. If not, please raise an issue in the [issue tracker](https://github.com/openscm/scmdata/issues)˚.\n\nFor the rest of our developer docs, please see [](development-reference).\n\n[issue_tracker]: https://github.com/openscm/scmdata/issues\n\n\u003c!--- sec-end-installation-dev --\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenscm%2Fscmdata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenscm%2Fscmdata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenscm%2Fscmdata/lists"}