Name | hurricane-net JSON |
Version |
0.0.3
JSON |
| download |
home_page | None |
Summary | A small example package |
upload_time | 2025-07-21 01:27:21 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Hurricane Net
`hurricane_net` is a Python package designed to facilitate the analysis and exploration of hurricane and tropical storm data from the International Best Track Archive for Climate Stewardship (IBTrACS). The package leverages the power of Pandas to filter and manipulate data, making it easier to perform analyses on specific storm regions or types, such as Atlantic hurricanes.
## Features
- **Data Loading**: Easily load IBTrACS data directly from a provided URL.
- **Filtering**: Filter data by storm basin or type (e.g., hurricanes) using intuitive methods.
- **Logging**: Comprehensive logging for debugging and tracking the data loading and filtering processes.
- **Prompt Templates**: Use predefined prompt templates for generating daily reports or other structured outputs.
## Installation
To install `hurricane_net`, you can use pip to install it from a local source or directly from a repository if available. If you are building a wheel, follow the instructions in the setup documentation.
```bash
pip install hurricane_net
```
## Usage
Below are examples demonstrating how to use `hurricane_net` to load, filter, and generate reports on storm data.
### Importing the Package
```python
import hurricane_net as hn
```
### Loading and Filtering Data
1. **Initialize the Data Loader**
Load the IBTrACS data from a specified URL. The default URL points to the IBTrACS database.
```python
data_loader = hn.data()
```
2. **Filter Data**
Filter the data based on different criteria. For example, to get all storms, Atlantic storms, or hurricanes:
```python
# Load all available storms
data_loader.filter('all')
all_storms = data_loader.storms
# Load storms from the North Atlantic basin
data_loader.filter('NA')
atlantic_storms = data_loader.storms
# Load hurricanes (NA basin with USA_STATUS 'HU' or 'HR')
data_loader.filter('hurricanes')
hurricanes = data_loader.storms
```
3. **Logging**
The package logs all major actions, such as data loading and filtering, to help trace operations.
### Generating Reports
The `Prompt` class provides functionality to generate reports using predefined templates.
## References
- [IBTrACS Data Access](https://www.ncei.noaa.gov/data/international-best-track-archive-for-climate-stewardship-ibtracs/v04r01/access/csv/)
- [IBTrACS Documentation](https://www.ncei.noaa.gov/products/international-best-track-archive)
- [IBTrACS v04r01 Column Documentation](https://www.ncei.noaa.gov/sites/g/files/anmtlf171/files/2025-04/IBTrACS_v04r01_column_documentation.pdf)
## Troubleshooting
- [Python Package](https://github.com/hammad93/hurricane-net/issues/19)
## License
This package is open source. Please see the LICENSE file for more information.
## Contributing
Contributions are welcome! Please feel free to open issues or submit pull requests.
## Acknowledgments
This package uses data from the International Best Track Archive for Climate Stewardship (IBTrACS) maintained by NOAA's National Centers for Environmental Information (NCEI).
Raw data
{
"_id": null,
"home_page": null,
"name": "hurricane-net",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "fluids <husmani@fluids.ai>",
"download_url": "https://files.pythonhosted.org/packages/eb/fc/4d609d7f51e8e4530a9e96db10493805a7914e564e0e9bb4c63bc1508025/hurricane_net-0.0.3.tar.gz",
"platform": null,
"description": "# Hurricane Net\n\n`hurricane_net` is a Python package designed to facilitate the analysis and exploration of hurricane and tropical storm data from the International Best Track Archive for Climate Stewardship (IBTrACS). The package leverages the power of Pandas to filter and manipulate data, making it easier to perform analyses on specific storm regions or types, such as Atlantic hurricanes.\n\n## Features\n\n- **Data Loading**: Easily load IBTrACS data directly from a provided URL.\n- **Filtering**: Filter data by storm basin or type (e.g., hurricanes) using intuitive methods.\n- **Logging**: Comprehensive logging for debugging and tracking the data loading and filtering processes.\n- **Prompt Templates**: Use predefined prompt templates for generating daily reports or other structured outputs.\n\n## Installation\n\nTo install `hurricane_net`, you can use pip to install it from a local source or directly from a repository if available. If you are building a wheel, follow the instructions in the setup documentation.\n\n```bash\npip install hurricane_net\n```\n\n## Usage\n\nBelow are examples demonstrating how to use `hurricane_net` to load, filter, and generate reports on storm data.\n\n### Importing the Package\n\n```python\nimport hurricane_net as hn\n```\n\n### Loading and Filtering Data\n\n1. **Initialize the Data Loader**\n\n Load the IBTrACS data from a specified URL. The default URL points to the IBTrACS database.\n\n ```python\n data_loader = hn.data()\n ```\n\n2. **Filter Data**\n\n Filter the data based on different criteria. For example, to get all storms, Atlantic storms, or hurricanes:\n\n ```python\n # Load all available storms\n data_loader.filter('all')\n all_storms = data_loader.storms\n\n # Load storms from the North Atlantic basin\n data_loader.filter('NA')\n atlantic_storms = data_loader.storms\n\n # Load hurricanes (NA basin with USA_STATUS 'HU' or 'HR')\n data_loader.filter('hurricanes')\n hurricanes = data_loader.storms\n ```\n\n3. **Logging**\n\n The package logs all major actions, such as data loading and filtering, to help trace operations.\n\n### Generating Reports\n\nThe `Prompt` class provides functionality to generate reports using predefined templates.\n\n\n## References\n\n- [IBTrACS Data Access](https://www.ncei.noaa.gov/data/international-best-track-archive-for-climate-stewardship-ibtracs/v04r01/access/csv/)\n- [IBTrACS Documentation](https://www.ncei.noaa.gov/products/international-best-track-archive)\n- [IBTrACS v04r01 Column Documentation](https://www.ncei.noaa.gov/sites/g/files/anmtlf171/files/2025-04/IBTrACS_v04r01_column_documentation.pdf)\n\n## Troubleshooting\n\n- [Python Package](https://github.com/hammad93/hurricane-net/issues/19)\n\n## License\n\nThis package is open source. Please see the LICENSE file for more information.\n\n## Contributing\n\nContributions are welcome! Please feel free to open issues or submit pull requests.\n\n## Acknowledgments\n\nThis package uses data from the International Best Track Archive for Climate Stewardship (IBTrACS) maintained by NOAA's National Centers for Environmental Information (NCEI).\n",
"bugtrack_url": null,
"license": null,
"summary": "A small example package",
"version": "0.0.3",
"project_urls": {
"Homepage": "https://github.com/hammad93/hurricane-net",
"Issues": "https://github.com/hammad93/hurricane-agent/issues"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "f26d0e5d9243f533fa4ea9435a0b511b8069547f16b05993bcb69048c7b9858a",
"md5": "3159ae9af48ffc0787f8340f0eda3afa",
"sha256": "38a20fd15dce2eb784c5e867439b7c1d4b4c7bdd12124e98ecdbb2bdc2185786"
},
"downloads": -1,
"filename": "hurricane_net-0.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3159ae9af48ffc0787f8340f0eda3afa",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 8194,
"upload_time": "2025-07-21T01:27:20",
"upload_time_iso_8601": "2025-07-21T01:27:20.968615Z",
"url": "https://files.pythonhosted.org/packages/f2/6d/0e5d9243f533fa4ea9435a0b511b8069547f16b05993bcb69048c7b9858a/hurricane_net-0.0.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebfc4d609d7f51e8e4530a9e96db10493805a7914e564e0e9bb4c63bc1508025",
"md5": "b27caf3478a2629e1caa612d8be4498e",
"sha256": "ca7bb7b90a9c2dcd6de5feb1068f3962630ffd38485e0476136826e65b3cd3b6"
},
"downloads": -1,
"filename": "hurricane_net-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "b27caf3478a2629e1caa612d8be4498e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7393,
"upload_time": "2025-07-21T01:27:21",
"upload_time_iso_8601": "2025-07-21T01:27:21.678801Z",
"url": "https://files.pythonhosted.org/packages/eb/fc/4d609d7f51e8e4530a9e96db10493805a7914e564e0e9bb4c63bc1508025/hurricane_net-0.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-21 01:27:21",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "hammad93",
"github_project": "hurricane-net",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "hurricane-net"
}