cdasws 1.8.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdasws
3
- Version: 1.8.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
@@ -14,7 +14,8 @@ Description:
14
14
  NASA's [Coordinated Data Analysis System](https://cdaweb.gsfc.nasa.gov/)
15
15
  (CDAS). This library implements the client side of the
16
16
  [CDAS RESTful web services](https://cdaweb.gsfc.nasa.gov/WebServices/REST/)
17
- and can return data in a
17
+ and can return data from any of
18
+ [these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
18
19
  [SpacePy datamodel](https://spacepy.github.io/datamodel.html),
19
20
  [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
20
21
  [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
@@ -125,5 +126,5 @@ Classifier: Programming Language :: Python
125
126
  Classifier: Topic :: Scientific/Engineering :: Physics
126
127
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
127
128
  Description-Content-Type: text/markdown
128
- Provides-Extra: xarray
129
129
  Provides-Extra: spdm
130
+ Provides-Extra: xarray
@@ -6,7 +6,8 @@ and services of
6
6
  NASA's [Coordinated Data Analysis System](https://cdaweb.gsfc.nasa.gov/)
7
7
  (CDAS). This library implements the client side of the
8
8
  [CDAS RESTful web services](https://cdaweb.gsfc.nasa.gov/WebServices/REST/)
9
- and can return data in a
9
+ and can return data from any of
10
+ [these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
10
11
  [SpacePy datamodel](https://spacepy.github.io/datamodel.html),
11
12
  [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
12
13
  [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
@@ -24,7 +24,7 @@
24
24
  #
25
25
  # NOSA HEADER END
26
26
  #
27
- # Copyright (c) 2018-2024 United States Government as represented by
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 &copy; 2018-2024 United States Government as represented by the
38
+ Copyright &copy; 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.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-2024 United States Government as represented by
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', '.000Z'))
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', '.000Z'))
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.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
@@ -14,7 +14,8 @@ Description:
14
14
  NASA's [Coordinated Data Analysis System](https://cdaweb.gsfc.nasa.gov/)
15
15
  (CDAS). This library implements the client side of the
16
16
  [CDAS RESTful web services](https://cdaweb.gsfc.nasa.gov/WebServices/REST/)
17
- and can return data in a
17
+ and can return data from any of
18
+ [these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
18
19
  [SpacePy datamodel](https://spacepy.github.io/datamodel.html),
19
20
  [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
20
21
  [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
@@ -125,5 +126,5 @@ Classifier: Programming Language :: Python
125
126
  Classifier: Topic :: Scientific/Engineering :: Physics
126
127
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
127
128
  Description-Content-Type: text/markdown
128
- Provides-Extra: xarray
129
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.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