cdasws 1.8.7__tar.gz → 1.8.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: cdasws
3
- Version: 1.8.7
3
+ Version: 1.8.9
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,11 +14,13 @@ 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 the
18
- [SpacePy data model](https://spacepy.github.io/datamodel.html) or an
19
- [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html)
20
- with all the original
21
- [ISTP/SPDF metadata](https://spdf.gsfc.nasa.gov/sp_use_of_cdf.html).
17
+ and can return data from any of
18
+ [these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
19
+ [SpacePy datamodel](https://spacepy.github.io/datamodel.html),
20
+ [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
21
+ [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
22
+ with all source and
23
+ [ISTP/SPDF](https://spdf.gsfc.nasa.gov/sp_use_of_cdf.html) metadata.
22
24
  Frequently asked questions concerning this library are at
23
25
  [FAQ](https://cdaweb.gsfc.nasa.gov/WebServices/REST/py/FAQ.html).
24
26
  For more general details about the CDAS web services, see
@@ -35,9 +37,9 @@ Description:
35
37
  Also, the following [Jupyter notebooks](https://jupyter.org/) demonstrate
36
38
  different features of the library:
37
39
 
38
- 1. [Basic Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExample.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExample.ipynb)) demonstrating use of library with results returned in [SpacePy data model](https://spacepy.github.io/datamodel.html). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsExample.ipynb).
39
- 2. [Basic Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExampleXarray.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExampleXarray.ipynb)) demonstrating use of library with results returned in an [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsExampleXarray.ipynb).
40
- 3. [Magnetic Field Line Conjunction Example](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.html) ([ipynb file](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.ipynb)) with related data retrieval/plotting using [cdasws](https://pypi.org/project/cdasws/). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/sscws-notebooks/main?labpath=SscWsConjunctionExample.ipynb).
40
+ 1. [Data Retrieval](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsDataRetrieval.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsDataRetrieval.ipynb)) demonstrating use of library with results returned in [SpacePy data model](https://spacepy.github.io/datamodel.html), [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), and [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsDataRetrieval.ipynb).
41
+ 2. [CDAWeb Binning Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsBinningExample.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsBinningExample.ipynb)) demonstrating use [CDAWeb binning](https://cdaweb.gsfc.nasa.gov/CDAWeb_Binning_readme.html). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsBinningExample.ipynb).
42
+ 3. [Magnetic Field Line Conjunction Example](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.html) ([ipynb file](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.ipynb)) with related data retrieval/plotting using [cdasws](https://pypi.org/project/cdasws/). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/sscws-notebooks/main?labpath=SscWsConjunctionExample.ipynb).
41
43
  ---
42
44
 
43
45
  And at the bottom of each
@@ -61,7 +63,7 @@ Description:
61
63
  1. To have get_data return the data in the SpacePy data model.
62
64
  * [SpacePy](https://spacepy.github.io/). Refer to the SpacePy
63
65
  documentation for the details of SpacePy's dependencies.
64
- 2. To have get_data return the data in an xarray dataset.
66
+ 2. To have get_data return the data in an [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html) or [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html).
65
67
  * [cdflib](https://pypi.org/project/cdflib/).
66
68
  * [xarray](https://pypi.org/project/xarray/).
67
69
 
@@ -124,5 +126,5 @@ Classifier: Programming Language :: Python
124
126
  Classifier: Topic :: Scientific/Engineering :: Physics
125
127
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
126
128
  Description-Content-Type: text/markdown
127
- Provides-Extra: spdm
128
129
  Provides-Extra: xarray
130
+ Provides-Extra: spdm
@@ -6,11 +6,13 @@ 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 the
10
- [SpacePy data model](https://spacepy.github.io/datamodel.html) or an
11
- [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html)
12
- with all the original
13
- [ISTP/SPDF metadata](https://spdf.gsfc.nasa.gov/sp_use_of_cdf.html).
9
+ and can return data from any of
10
+ [these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
11
+ [SpacePy datamodel](https://spacepy.github.io/datamodel.html),
12
+ [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
13
+ [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
14
+ with all source and
15
+ [ISTP/SPDF](https://spdf.gsfc.nasa.gov/sp_use_of_cdf.html) metadata.
14
16
  Frequently asked questions concerning this library are at
15
17
  [FAQ](https://cdaweb.gsfc.nasa.gov/WebServices/REST/py/FAQ.html).
16
18
  For more general details about the CDAS web services, see
@@ -27,9 +29,9 @@ To run the included example, do the following
27
29
  Also, the following [Jupyter notebooks](https://jupyter.org/) demonstrate
28
30
  different features of the library:
29
31
 
30
- 1. [Basic Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExample.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExample.ipynb)) demonstrating use of library with results returned in [SpacePy data model](https://spacepy.github.io/datamodel.html). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsExample.ipynb).
31
- 2. [Basic Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExampleXarray.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExampleXarray.ipynb)) demonstrating use of library with results returned in an [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsExampleXarray.ipynb).
32
- 3. [Magnetic Field Line Conjunction Example](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.html) ([ipynb file](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.ipynb)) with related data retrieval/plotting using [cdasws](https://pypi.org/project/cdasws/). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/sscws-notebooks/main?labpath=SscWsConjunctionExample.ipynb).
32
+ 1. [Data Retrieval](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsDataRetrieval.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsDataRetrieval.ipynb)) demonstrating use of library with results returned in [SpacePy data model](https://spacepy.github.io/datamodel.html), [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), and [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsDataRetrieval.ipynb).
33
+ 2. [CDAWeb Binning Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsBinningExample.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsBinningExample.ipynb)) demonstrating use [CDAWeb binning](https://cdaweb.gsfc.nasa.gov/CDAWeb_Binning_readme.html). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsBinningExample.ipynb).
34
+ 3. [Magnetic Field Line Conjunction Example](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.html) ([ipynb file](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.ipynb)) with related data retrieval/plotting using [cdasws](https://pypi.org/project/cdasws/). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/sscws-notebooks/main?labpath=SscWsConjunctionExample.ipynb).
33
35
  ---
34
36
 
35
37
  And at the bottom of each
@@ -53,7 +55,7 @@ dependencies are required:
53
55
  1. To have get_data return the data in the SpacePy data model.
54
56
  * [SpacePy](https://spacepy.github.io/). Refer to the SpacePy
55
57
  documentation for the details of SpacePy's dependencies.
56
- 2. To have get_data return the data in an xarray dataset.
58
+ 2. To have get_data return the data in an [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html) or [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html).
57
59
  * [cdflib](https://pypi.org/project/cdflib/).
58
60
  * [xarray](https://pypi.org/project/xarray/).
59
61
 
@@ -137,7 +137,7 @@ except ImportError:
137
137
  CDF_XARRAY_AVAILABLE = False
138
138
 
139
139
 
140
- __version__ = "1.8.7"
140
+ __version__ = "1.8.9"
141
141
 
142
142
 
143
143
  #
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdasws
3
- Version: 1.8.7
3
+ Version: 1.8.9
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,11 +14,13 @@ 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 the
18
- [SpacePy data model](https://spacepy.github.io/datamodel.html) or an
19
- [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html)
20
- with all the original
21
- [ISTP/SPDF metadata](https://spdf.gsfc.nasa.gov/sp_use_of_cdf.html).
17
+ and can return data from any of
18
+ [these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
19
+ [SpacePy datamodel](https://spacepy.github.io/datamodel.html),
20
+ [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
21
+ [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
22
+ with all source and
23
+ [ISTP/SPDF](https://spdf.gsfc.nasa.gov/sp_use_of_cdf.html) metadata.
22
24
  Frequently asked questions concerning this library are at
23
25
  [FAQ](https://cdaweb.gsfc.nasa.gov/WebServices/REST/py/FAQ.html).
24
26
  For more general details about the CDAS web services, see
@@ -35,9 +37,9 @@ Description:
35
37
  Also, the following [Jupyter notebooks](https://jupyter.org/) demonstrate
36
38
  different features of the library:
37
39
 
38
- 1. [Basic Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExample.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExample.ipynb)) demonstrating use of library with results returned in [SpacePy data model](https://spacepy.github.io/datamodel.html). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsExample.ipynb).
39
- 2. [Basic Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExampleXarray.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsExampleXarray.ipynb)) demonstrating use of library with results returned in an [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsExampleXarray.ipynb).
40
- 3. [Magnetic Field Line Conjunction Example](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.html) ([ipynb file](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.ipynb)) with related data retrieval/plotting using [cdasws](https://pypi.org/project/cdasws/). [Launch on Binder](https://mybinder.org/v2/gh/berniegsfc/sscws-notebooks/main?labpath=SscWsConjunctionExample.ipynb).
40
+ 1. [Data Retrieval](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsDataRetrieval.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsDataRetrieval.ipynb)) demonstrating use of library with results returned in [SpacePy data model](https://spacepy.github.io/datamodel.html), [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), and [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsDataRetrieval.ipynb).
41
+ 2. [CDAWeb Binning Example](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsBinningExample.html) ([ipynb file](https://cdaweb.gsfc.nasa.gov/WebServices/REST/jupyter/CdasWsBinningExample.ipynb)) demonstrating use [CDAWeb binning](https://cdaweb.gsfc.nasa.gov/CDAWeb_Binning_readme.html). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/cdasws-notebooks/main?labpath=CdasWsBinningExample.ipynb).
42
+ 3. [Magnetic Field Line Conjunction Example](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.html) ([ipynb file](https://sscweb.gsfc.nasa.gov/WebServices/REST/jupyter/SscWsConjunctionExample.ipynb)) with related data retrieval/plotting using [cdasws](https://pypi.org/project/cdasws/). [Launch on Binder](https://binder.opensci.2i2c.cloud/v2/gh/berniegsfc/sscws-notebooks/main?labpath=SscWsConjunctionExample.ipynb).
41
43
  ---
42
44
 
43
45
  And at the bottom of each
@@ -61,7 +63,7 @@ Description:
61
63
  1. To have get_data return the data in the SpacePy data model.
62
64
  * [SpacePy](https://spacepy.github.io/). Refer to the SpacePy
63
65
  documentation for the details of SpacePy's dependencies.
64
- 2. To have get_data return the data in an xarray dataset.
66
+ 2. To have get_data return the data in an [xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html) or [pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html).
65
67
  * [cdflib](https://pypi.org/project/cdflib/).
66
68
  * [xarray](https://pypi.org/project/xarray/).
67
69
 
@@ -124,5 +126,5 @@ Classifier: Programming Language :: Python
124
126
  Classifier: Topic :: Scientific/Engineering :: Physics
125
127
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
126
128
  Description-Content-Type: text/markdown
127
- Provides-Extra: spdm
128
129
  Provides-Extra: xarray
130
+ Provides-Extra: spdm
@@ -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.7",
13
+ version="1.8.9",
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",
@@ -19,7 +19,7 @@ setup(
19
19
  author_email="NASA-SPDF-Support@nasa.onmicrosoft.com",
20
20
  license="NOSA",
21
21
  packages=["cdasws"],
22
- # python_requires=[">3.4"]
22
+ # python_requires=[">3.6"]
23
23
  # packages=find_packages(exclude=["tests"]),
24
24
  # packages=find_packages(),
25
25
  include_package_data=True,
File without changes
File without changes
File without changes
File without changes