goesgcp 1.0.8__tar.gz → 1.0.9__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.8
3
+ Version: 1.0.9
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
@@ -21,6 +21,7 @@ def list_blobs(connection, bucket_name, prefix):
21
21
  bucket = connection.bucket(bucket_name)
22
22
 
23
23
  blobs = bucket.list_blobs(prefix=prefix)
24
+
24
25
  return blobs
25
26
 
26
27
  def get_directory_prefix(year, julian_day, hour):
@@ -44,6 +45,8 @@ def get_recent_files(connection, bucket_name, base_prefix, pattern, min_files):
44
45
  while len(files) < min_files:
45
46
  year = current_time.year
46
47
  julian_day = current_time.timetuple().tm_yday # Get the Julian day
48
+ # Add 3 digits to the Julian day
49
+ julian_day = str(julian_day).zfill(3)
47
50
  hour = current_time.hour
48
51
 
49
52
  # Generate the directory prefix for the current date and time
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: goesgcp
3
- Version: 1.0.8
3
+ Version: 1.0.9
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.8',
16
+ version='1.0.9',
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