cdasws 1.8.6__tar.gz → 1.8.7__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.6 → cdasws-1.8.7}/PKG-INFO +2 -2
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws/__init__.py +3 -2
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws/__main__.py +1 -1
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws/datarequest.py +1 -1
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws.egg-info/PKG-INFO +2 -2
- {cdasws-1.8.6 → cdasws-1.8.7}/setup.py +1 -1
- {cdasws-1.8.6 → cdasws-1.8.7}/README.md +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws/datarepresentation.py +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws/timeinterval.py +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws.egg-info/SOURCES.txt +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws.egg-info/dependency_links.txt +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws.egg-info/requires.txt +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/cdasws.egg-info/top_level.txt +0 -0
- {cdasws-1.8.6 → cdasws-1.8.7}/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.7
|
|
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
|
|
@@ -124,5 +124,5 @@ Classifier: Programming Language :: Python
|
|
|
124
124
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
125
125
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
126
126
|
Description-Content-Type: text/markdown
|
|
127
|
-
Provides-Extra: xarray
|
|
128
127
|
Provides-Extra: spdm
|
|
128
|
+
Provides-Extra: xarray
|
|
@@ -137,7 +137,7 @@ except ImportError:
|
|
|
137
137
|
CDF_XARRAY_AVAILABLE = False
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
__version__ = "1.8.
|
|
140
|
+
__version__ = "1.8.7"
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
#
|
|
@@ -1333,7 +1333,8 @@ class CdasWs:
|
|
|
1333
1333
|
CdasWs.get_data
|
|
1334
1334
|
"""
|
|
1335
1335
|
|
|
1336
|
-
self.logger.debug('data_request = %s', data_request.json())
|
|
1336
|
+
#self.logger.debug('data_request = %s', data_request.json())
|
|
1337
|
+
self.logger.debug('data_request = %s', data_request.xml_str())
|
|
1337
1338
|
|
|
1338
1339
|
url = self._endpoint + 'datasets'
|
|
1339
1340
|
|
|
@@ -310,7 +310,7 @@ class DataRequest(metaclass=ABCMeta): # pylint: disable=too-few-public-methods
|
|
|
310
310
|
builder.end('ImageFormat')
|
|
311
311
|
if 'BinData' in data_request:
|
|
312
312
|
bin_data = data_request['BinData']
|
|
313
|
-
builder.start('BinData')
|
|
313
|
+
builder.start('BinData', {})
|
|
314
314
|
if 'Interval' in bin_data:
|
|
315
315
|
builder.start('Interval', {})
|
|
316
316
|
builder.data(str(bin_data['Interval']))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdasws
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.7
|
|
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
|
|
@@ -124,5 +124,5 @@ Classifier: Programming Language :: Python
|
|
|
124
124
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
125
125
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
126
126
|
Description-Content-Type: text/markdown
|
|
127
|
-
Provides-Extra: xarray
|
|
128
127
|
Provides-Extra: spdm
|
|
128
|
+
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.7",
|
|
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
|