climalysis


Nameclimalysis JSON
Version 0.1.3 PyPI version JSON
download
home_pageNone
SummaryA comprehensive toolkit for climate impact analysis.
upload_time2025-07-21 22:21:22
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords python climate analysis climate analysis climate data impact analysis
VCS
bugtrack_url
requirements numpy scikit_learn scipy setuptools statsmodels xarray myst-parser
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Climalysis: Your Toolkit for Climate Impact Analysis ☁️🌞
[![PyPI](https://img.shields.io/pypi/v/climalysis.svg)](https://pypi.org/project/climalysis/)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)
[![Read the Docs](https://readthedocs.org/projects/climalysis/badge/?version=latest)](https://climalysis.readthedocs.io/en/latest/)
[![codebeat badge](https://codebeat.co/badges/1e41f852-36fb-456c-a4ac-27812db8082c)](https://codebeat.co/projects/github-com-climalysis-climalysis-main)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8105734.svg)](https://doi.org/10.5281/zenodo.8105734)
[![Tests](https://github.com/Climalysis/climalysis/actions/workflows/tests.yml/badge.svg)](https://github.com/Climalysis/climalysis/actions)



Developed by an assortment of active and past climate researchers, Climalysis is more than just a project – it's your one-stop platform for comprehensive climate impact analysis tools. 

**Project Lead:** Jake Casselman ([GitHub](https://github.com/jake-casselman))

---
## 🚀 Quickstart

Install Climalysis:

    pip install climalysis

Try your first analysis:

    from climalysis import nino_index, normalize_longitudes

    sst = nino_index("data/sst_monthly.nc", region="3.4").load_and_process_data()
    sst.plot()
---

**Our Mission:**

Climalysis seeks to propel climate research forward by democratizing access to advanced analytical tools. Our primary mission is to provide a robust, open-source platform that encourages both established researchers and novice enthusiasts to run their own analyses, fostering innovation and reproducibility in climate studies. We aim to eliminate duplicated effort, enabling our users to focus on fresh discoveries and insights. Through building a collaborative community, we aspire to continually identify and open-source new tools, accelerating the pace of climate research and enriching the understanding of our world's climate.

**What We Offer:**

Dive into our code, explore complex climate data, learn with us, and contribute your insights. Climalysis empowers you to extract insights from complex climate data.

---
Whether you're a climate scientist seeking advanced research tools, a data enthusiast, or simply curious about climate impacts, Climalysis invites you to join us. Explore, learn, contribute, and together, let's deepen our understanding of the world's climate and drive towards a sustainable future.

## Table of Contents

1. [Installation](#installation)
2. [Dependencies](#dependencies)
3. [Usage](#usage)
4. [Contributing](#contributing)
5. [License](#license)
6. [Contact](#contact)
7. [Acknowledgments](#acknowledgments)
8. [Supporters](#supporters)
9. [Conflict of Interest](#conflict-of-interest)

## Installation

Climalysis can be accessed either directly from the GitHub repository or through the Python package.

### GitHub Repository

First, clone the repository:

```shell
git clone https://github.com/Climalysis/climalysis.git
```

Next, navigate to the cloned repository and install the package:

```shell
cd climalysis
python -m venv .venv
source .venv/bin/activate  # on Windows: .venv\Scripts\activate
pip install .
```

Ensure you have Python 3.7 or higher installed on your system before installation.

### Installing Python Package

You can also install Climalysis directly as a Python package:

```shell
pip install climalysis
```

## Dependencies

Climalysis requires the following Python packages:

- numpy==1.23.5
- scikit_learn==1.2.1
- scipy==1.9.3
- setuptools==67.8.0
- statsmodels==0.13.5
- xarray==2023.3.0

These packages can be installed using pip by running the following command in your terminal:

```bash
pip install climalysis
```

## Usage

After installation, you can import and use our package in your Python scripts:

```python
from climalysis import nino_index, normalize_longitudes

sst = nino_index("data/sst_monthly.nc", region="3.4").load_and_process_data()
sst.plot()

```

You can now access the functions/classes in these modules.

## Contributing

We warmly welcome contributions! Please see [here](CONTRIBUTING.md) for details on how to contribute. Have a look at the discussions if you need any ideas for where to contribute.

## License

This project is licensed under the terms of the GNU General Public License. See [LICENSE](LICENSE) for more details.

## Contact

If you have any questions, feel free to reach out to us. For major decisions, please consult with our project lead, Jake Casselman (jake.w.casselman@gmail.com).

## Acknowledgments

We would like to express our gratitude to all contributors and users of Climalysis. Your support is greatly appreciated.


## Conflict of Interest

We declare that there is no conflict of interest. The direction and goals of Climalysis are determined solely by the project team, independent of any external organizations.




            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "climalysis",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, climate, analysis, climate analysis, climate data, impact analysis",
    "author": null,
    "author_email": "Jake Casselman <jake.w.casselman@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "# Climalysis: Your Toolkit for Climate Impact Analysis \u2601\ufe0f\ud83c\udf1e\n[![PyPI](https://img.shields.io/pypi/v/climalysis.svg)](https://pypi.org/project/climalysis/)\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)\n[![Read the Docs](https://readthedocs.org/projects/climalysis/badge/?version=latest)](https://climalysis.readthedocs.io/en/latest/)\n[![codebeat badge](https://codebeat.co/badges/1e41f852-36fb-456c-a4ac-27812db8082c)](https://codebeat.co/projects/github-com-climalysis-climalysis-main)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8105734.svg)](https://doi.org/10.5281/zenodo.8105734)\n[![Tests](https://github.com/Climalysis/climalysis/actions/workflows/tests.yml/badge.svg)](https://github.com/Climalysis/climalysis/actions)\n\n\n\nDeveloped by an assortment of active and past climate researchers, Climalysis is more than just a project \u2013 it's your one-stop platform for comprehensive climate impact analysis tools. \n\n**Project Lead:** Jake Casselman ([GitHub](https://github.com/jake-casselman))\n\n---\n## \ud83d\ude80 Quickstart\n\nInstall Climalysis:\n\n    pip install climalysis\n\nTry your first analysis:\n\n    from climalysis import nino_index, normalize_longitudes\n\n    sst = nino_index(\"data/sst_monthly.nc\", region=\"3.4\").load_and_process_data()\n    sst.plot()\n---\n\n**Our Mission:**\n\nClimalysis seeks to propel climate research forward by democratizing access to advanced analytical tools. Our primary mission is to provide a robust, open-source platform that encourages both established researchers and novice enthusiasts to run their own analyses, fostering innovation and reproducibility in climate studies. We aim to eliminate duplicated effort, enabling our users to focus on fresh discoveries and insights. Through building a collaborative community, we aspire to continually identify and open-source new tools, accelerating the pace of climate research and enriching the understanding of our world's climate.\n\n**What We Offer:**\n\nDive into our code, explore complex climate data, learn with us, and contribute your insights. Climalysis empowers you to extract insights from complex climate data.\n\n---\nWhether you're a climate scientist seeking advanced research tools, a data enthusiast, or simply curious about climate impacts, Climalysis invites you to join us. Explore, learn, contribute, and together, let's deepen our understanding of the world's climate and drive towards a sustainable future.\n\n## Table of Contents\n\n1. [Installation](#installation)\n2. [Dependencies](#dependencies)\n3. [Usage](#usage)\n4. [Contributing](#contributing)\n5. [License](#license)\n6. [Contact](#contact)\n7. [Acknowledgments](#acknowledgments)\n8. [Supporters](#supporters)\n9. [Conflict of Interest](#conflict-of-interest)\n\n## Installation\n\nClimalysis can be accessed either directly from the GitHub repository or through the Python package.\n\n### GitHub Repository\n\nFirst, clone the repository:\n\n```shell\ngit clone https://github.com/Climalysis/climalysis.git\n```\n\nNext, navigate to the cloned repository and install the package:\n\n```shell\ncd climalysis\npython -m venv .venv\nsource .venv/bin/activate  # on Windows: .venv\\Scripts\\activate\npip install .\n```\n\nEnsure you have Python 3.7 or higher installed on your system before installation.\n\n### Installing Python Package\n\nYou can also install Climalysis directly as a Python package:\n\n```shell\npip install climalysis\n```\n\n## Dependencies\n\nClimalysis requires the following Python packages:\n\n- numpy==1.23.5\n- scikit_learn==1.2.1\n- scipy==1.9.3\n- setuptools==67.8.0\n- statsmodels==0.13.5\n- xarray==2023.3.0\n\nThese packages can be installed using pip by running the following command in your terminal:\n\n```bash\npip install climalysis\n```\n\n## Usage\n\nAfter installation, you can import and use our package in your Python scripts:\n\n```python\nfrom climalysis import nino_index, normalize_longitudes\n\nsst = nino_index(\"data/sst_monthly.nc\", region=\"3.4\").load_and_process_data()\nsst.plot()\n\n```\n\nYou can now access the functions/classes in these modules.\n\n## Contributing\n\nWe warmly welcome contributions! Please see [here](CONTRIBUTING.md) for details on how to contribute. Have a look at the discussions if you need any ideas for where to contribute.\n\n## License\n\nThis project is licensed under the terms of the GNU General Public License. See [LICENSE](LICENSE) for more details.\n\n## Contact\n\nIf you have any questions, feel free to reach out to us. For major decisions, please consult with our project lead, Jake Casselman (jake.w.casselman@gmail.com).\n\n## Acknowledgments\n\nWe would like to express our gratitude to all contributors and users of Climalysis. Your support is greatly appreciated.\n\n\n## Conflict of Interest\n\nWe declare that there is no conflict of interest. The direction and goals of Climalysis are determined solely by the project team, independent of any external organizations.\n\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A comprehensive toolkit for climate impact analysis.",
    "version": "0.1.3",
    "project_urls": {
        "Documentation": "https://climalysis.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/Climalysis/climalysis"
    },
    "split_keywords": [
        "python",
        " climate",
        " analysis",
        " climate analysis",
        " climate data",
        " impact analysis"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4059398e56fc55d53fe457e51e0e71f00bab29666a8b5b4c81d4271cc92800b0",
                "md5": "228267d1d2f142a6e05404be0cb4e9c3",
                "sha256": "a1f0d65816cf9fa80e39e2e5c00a6c5cd665c3b7ac76cd1fdbaa3c0bd79d17fd"
            },
            "downloads": -1,
            "filename": "climalysis-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "228267d1d2f142a6e05404be0cb4e9c3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 43701,
            "upload_time": "2025-07-21T22:21:22",
            "upload_time_iso_8601": "2025-07-21T22:21:22.385957Z",
            "url": "https://files.pythonhosted.org/packages/40/59/398e56fc55d53fe457e51e0e71f00bab29666a8b5b4c81d4271cc92800b0/climalysis-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-21 22:21:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Climalysis",
    "github_project": "climalysis",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    "==",
                    "1.23.5"
                ]
            ]
        },
        {
            "name": "scikit_learn",
            "specs": [
                [
                    "==",
                    "1.2.1"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    "==",
                    "1.9.3"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    "==",
                    "67.8.0"
                ]
            ]
        },
        {
            "name": "statsmodels",
            "specs": [
                [
                    "==",
                    "0.13.5"
                ]
            ]
        },
        {
            "name": "xarray",
            "specs": [
                [
                    "==",
                    "2023.3.0"
                ]
            ]
        },
        {
            "name": "myst-parser",
            "specs": [
                [
                    "==",
                    "2.0.0"
                ]
            ]
        }
    ],
    "lcname": "climalysis"
}
        
Elapsed time: 2.23485s