cdasws 1.8.9__tar.gz → 1.8.10__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.
- {cdasws-1.8.9 → cdasws-1.8.10}/PKG-INFO +2 -2
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws/__init__.py +3 -3
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws/timeinterval.py +3 -3
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws.egg-info/PKG-INFO +2 -2
- {cdasws-1.8.9 → cdasws-1.8.10}/setup.py +1 -1
- {cdasws-1.8.9 → cdasws-1.8.10}/README.md +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws/__main__.py +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws/datarepresentation.py +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws/datarequest.py +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws.egg-info/SOURCES.txt +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws.egg-info/dependency_links.txt +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws.egg-info/requires.txt +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/cdasws.egg-info/top_level.txt +0 -0
- {cdasws-1.8.9 → cdasws-1.8.10}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdasws
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.10
|
|
4
4
|
Summary: NASA's Coordinated Data Analysis System Web Service Client Library
|
|
5
5
|
Home-page: https://cdaweb.gsfc.nasa.gov/WebServices/REST
|
|
6
6
|
Author: Bernie Harris
|
|
@@ -126,5 +126,5 @@ Classifier: Programming Language :: Python
|
|
|
126
126
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
127
127
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
128
128
|
Description-Content-Type: text/markdown
|
|
129
|
-
Provides-Extra: xarray
|
|
130
129
|
Provides-Extra: spdm
|
|
130
|
+
Provides-Extra: xarray
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
#
|
|
25
25
|
# NOSA HEADER END
|
|
26
26
|
#
|
|
27
|
-
# Copyright (c) 2018-
|
|
27
|
+
# Copyright (c) 2018-2025 United States Government as represented by
|
|
28
28
|
# the National Aeronautics and Space Administration. No copyright is
|
|
29
29
|
# claimed in the United States under Title 17, U.S.Code. All Other
|
|
30
30
|
# Rights Reserved.
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
Package for accessing the Coordinate Data Analysis System (CDAS)
|
|
36
36
|
web services <https://cdaweb.gsfc.nasa.gov/WebServices/REST/>.<br>
|
|
37
37
|
|
|
38
|
-
Copyright © 2018-
|
|
38
|
+
Copyright © 2018-2025 United States Government as represented by the
|
|
39
39
|
National Aeronautics and Space Administration. No copyright is claimed in
|
|
40
40
|
the United States under Title 17, U.S.Code. All Other Rights Reserved.
|
|
41
41
|
|
|
@@ -137,7 +137,7 @@ except ImportError:
|
|
|
137
137
|
CDF_XARRAY_AVAILABLE = False
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
__version__ = "1.8.
|
|
140
|
+
__version__ = "1.8.10"
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
#
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
#
|
|
25
25
|
# NOSA HEADER END
|
|
26
26
|
#
|
|
27
|
-
# Copyright (c) 2018-
|
|
27
|
+
# Copyright (c) 2018-2025 United States Government as represented by
|
|
28
28
|
# the National Aeronautics and Space Administration. No copyright is
|
|
29
29
|
# claimed in the United States under Title 17, U.S.Code. All Other
|
|
30
30
|
# Rights Reserved.
|
|
@@ -155,10 +155,10 @@ class TimeInterval:
|
|
|
155
155
|
|
|
156
156
|
builder.start('TimeInterval', {})
|
|
157
157
|
builder.start('Start', {})
|
|
158
|
-
builder.data(self._start.isoformat().replace('+00:00', '
|
|
158
|
+
builder.data(self._start.isoformat().replace('+00:00', 'Z'))
|
|
159
159
|
builder.end('Start')
|
|
160
160
|
builder.start('End', {})
|
|
161
|
-
builder.data(self._end.isoformat().replace('+00:00', '
|
|
161
|
+
builder.data(self._end.isoformat().replace('+00:00', 'Z'))
|
|
162
162
|
builder.end('End')
|
|
163
163
|
|
|
164
164
|
return builder.end('TimeInterval')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdasws
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.10
|
|
4
4
|
Summary: NASA's Coordinated Data Analysis System Web Service Client Library
|
|
5
5
|
Home-page: https://cdaweb.gsfc.nasa.gov/WebServices/REST
|
|
6
6
|
Author: Bernie Harris
|
|
@@ -126,5 +126,5 @@ Classifier: Programming Language :: Python
|
|
|
126
126
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
127
127
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
128
128
|
Description-Content-Type: text/markdown
|
|
129
|
-
Provides-Extra: xarray
|
|
130
129
|
Provides-Extra: spdm
|
|
130
|
+
Provides-Extra: xarray
|
|
@@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
|
|
|
10
10
|
# This call to setup() does all the work
|
|
11
11
|
setup(
|
|
12
12
|
name="cdasws",
|
|
13
|
-
version="1.8.
|
|
13
|
+
version="1.8.10",
|
|
14
14
|
description="NASA's Coordinated Data Analysis System Web Service Client Library",
|
|
15
15
|
long_description=README,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|