goesgcp 1.0.1__tar.gz → 1.0.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: goesgcp
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A package to download and process GOES-16/17 data
5
5
  Home-page: https://github.com/helvecioneto/goesgcp
6
6
  Author: Helvecio B. L. Neto
@@ -151,7 +151,7 @@ def main():
151
151
  parser.add_argument('--lon_min', type=float, default=-116, help='Minimum longitude of the bounding box')
152
152
  parser.add_argument('--lon_max', type=float, default=-25, help='Maximum longitude of the bounding box')
153
153
  parser.add_argument('--resolution', type=float, default=0.045, help='Resolution of the output file')
154
- parser.add_argument('--output_path', type=str, default='output/', help='Path for saving output files')
154
+ parser.add_argument('--output', type=str, default='output/', help='Path for saving output files')
155
155
 
156
156
  # Other settings
157
157
  parser.add_argument('--parallel', type=bool, default=True, help='Use parallel processing')
@@ -166,7 +166,7 @@ def main():
166
166
  sys.exit(1)
167
167
 
168
168
  # Set global variables
169
- output_path = args.output_path
169
+ output_path = args.output
170
170
  satellite = args.satellite
171
171
  product = args.product
172
172
  domain = args.domain
@@ -185,8 +185,8 @@ def main():
185
185
  pattern = "OR_"+product+domain+"-M6C"+channel+"_G" + satellite[-2:]
186
186
  min_files = args.recent
187
187
 
188
- output = 'output/'
189
- pathlib.Path(output).mkdir(parents=True, exist_ok=True)
188
+ # Create output directory
189
+ pathlib.Path(output_path).mkdir(parents=True, exist_ok=True)
190
190
 
191
191
  # Create connection
192
192
  storage_client = storage.Client.create_anonymous_client()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: goesgcp
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A package to download and process GOES-16/17 data
5
5
  Home-page: https://github.com/helvecioneto/goesgcp
6
6
  Author: Helvecio B. L. Neto
@@ -13,7 +13,7 @@ with open('requirements.txt') as f:
13
13
 
14
14
  setup(
15
15
  name="goesgcp",
16
- version='1.0.1',
16
+ version='1.0.3',
17
17
  author="Helvecio B. L. Neto",
18
18
  author_email="helvecioblneto@gmail.com",
19
19
  description="A package to download and process GOES-16/17 data",
File without changes
File without changes
File without changes
File without changes