hydroanomaly 0.7.1__tar.gz → 0.7.2__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.4
2
2
  Name: hydroanomaly
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: A Python package for hydro anomaly detection with simple USGS data retrieval
5
5
  Author-email: Ehsan Kahrizi <ehsan.kahrizi@usu.edu>
6
6
  License: MIT License
@@ -9,12 +9,12 @@ A simple Python package with just 3 modules:
9
9
  That's it - nothing else!
10
10
  """
11
11
 
12
- __version__ = "0.7.1"
12
+ __version__ = "0.7.2"
13
13
  __author__ = "Ehsan Kahrizi (Ehsan.kahrizi@usu.edu)"
14
14
 
15
15
  # Import the 3 simple modules
16
16
  from .usgs_turbidity import get_turbidity, get_usgs_turbidity
17
- from .sentinel_bands import get_sentinel_bands, get_satellite_data, get_sentinel, calculate_ndvi
17
+ from .sentinel_bands import get_sentinel_bands, get_satellite_data, get_sentinel, get_sentinel_bands_gee
18
18
  from .visualize import plot_timeseries, plot_turbidity, plot_sentinel, plot_comparison, plot, visualize
19
19
 
20
20
  # Export everything
@@ -24,11 +24,12 @@ __all__ = [
24
24
  'get_usgs_turbidity',
25
25
 
26
26
  # Sentinel functions
27
+ 'get_sentinel_bands_gee',
27
28
  'get_sentinel_bands',
28
29
  'get_satellite_data',
29
30
  'get_sentinel',
30
- 'calculate_ndvi',
31
-
31
+
32
+
32
33
  # Visualization functions
33
34
  'plot_timeseries',
34
35
  'plot_turbidity',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hydroanomaly
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: A Python package for hydro anomaly detection with simple USGS data retrieval
5
5
  Author-email: Ehsan Kahrizi <ehsan.kahrizi@usu.edu>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hydroanomaly"
7
- version = "0.7.1"
7
+ version = "0.7.2"
8
8
  authors = [
9
9
  {name = "Ehsan Kahrizi", email = "ehsan.kahrizi@usu.edu"},
10
10
  ]
File without changes
File without changes
File without changes