goesgcp 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Helvecio B. Leal Neto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.1
2
+ Name: goesgcp
3
+ Version: 1.0.0
4
+ Summary: A package to download and process GOES-16/17 data
5
+ Home-page: https://github.com/helvecioneto/goesgcp
6
+ Author: Helvecio B. L. Neto
7
+ Author-email: helvecioblneto@gmail.com
8
+ License: LICENSE
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Scientific/Engineering
16
+ Classifier: Topic :: Software Development
17
+ Classifier: Topic :: Utilities
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: google-cloud-storage
21
+ Requires-Dist: pyproj
22
+ Requires-Dist: xarray
23
+ Requires-Dist: netcdf4
24
+ Requires-Dist: rioxarray
25
+
26
+ # goesgcp
27
+
28
+ goesgcp is a utility script for downloading and reprojecting GOES-R satellite data. The script uses the `google.cloud` library to download data from the Google Cloud Platform (GCP) and the `pyproj` library to reproject the data to EPSG:4326 and crop it to a specified bounding box.
29
+
30
+
31
+ ## Installation
32
+
33
+ You can install the necessary dependencies using `pip`:
34
+
35
+ ```bash
36
+ pip install goesgcp
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ### Command-Line Arguments
42
+
43
+ The script uses the `argparse` module for handling command-line arguments. Below are the available options:
44
+
45
+ ```bash
46
+ goesgcp [OPTIONS]
47
+ ```
48
+
49
+ | Option | Description |
50
+ |----------------------|-----------------------------------------------------------------------------|
51
+ | `--satellite` | Name of the satellite (e.g., goes16). |
52
+ | `--product` | Name of the satellite product (e.g., ABI-L2-CMIPF). |
53
+ | `--var_name` | Variable name to extract (e.g., CMI). |
54
+ | `--channel` | Channel to use (e.g., 13). | |
55
+ | `--between_minutes` | Filter data between these minutes (default: `[0, 60]`). |
56
+ | `--output_path` | Path for saving output files (default: `output/`). | |
57
+ | `--lat_min` | Minimum latitude of the bounding box (default: `-56`). |
58
+ | `--lat_max` | Maximum latitude of the bounding box (default: `35`). |
59
+ | `--lon_min` | Minimum longitude of the bounding box (default: `-116`). |
60
+ | `--lon_max` | Maximum longitude of the bounding box (default: `-25`). |
61
+ | `--max_attempts` | Number of attempts to download a file before logging a failure (default: `3`).|
62
+
63
+ ### Examples
64
+
65
+ To download and process recent data for the GOES-16 satellite, ABI-L2-CMIPF product, variable CMI, and channel 13, run the following command:
66
+
67
+ ```bash
68
+ goesgcp --satellite goes16 --product ABI-L2-CMIPF --var_name CMI --channel 13 --recent 3 --output_path "output/"
69
+ ```
70
+
71
+ ### Credits
72
+ All the credit goes to the original author of the **goes2go** library.
73
+ And this is a otimization by Helvecio Neto - 2025
@@ -0,0 +1,6 @@
1
+ goesgcp-1.0.0.dist-info/LICENSE,sha256=AHeZifD4UyBZI61Ug5lETXgX3Anp_XfAvFXQqrW9AnU,1078
2
+ goesgcp-1.0.0.dist-info/METADATA,sha256=Q2Un1vXOc29k4JDPf9mUQVgIn8ErQGm86TfFHPZojkM,3219
3
+ goesgcp-1.0.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
4
+ goesgcp-1.0.0.dist-info/entry_points.txt,sha256=6afMW51WnUR9VZ_xvDoiB8JQb2OFiLuzRtV6dPL__OQ,46
5
+ goesgcp-1.0.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
+ goesgcp-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.6.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ goesgcp = goesgcp.main:main
@@ -0,0 +1 @@
1
+