Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AMDA] Uses CDF_ISTP as default #101

Merged
merged 2 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/user/amda/amda.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Let's start with a simple example, we want to download the first parameter avail
<ParameterIndex: He flux>
>>> first_param=amda.get_parameter(first_param_index, "2018-01-01", "2018-01-02T01")
>>> first_param.columns
['ace_epam_ca60_he[0]', 'ace_epam_ca60_he[1]']
['He flux']
>>> len(first_param.time)
288

Expand All @@ -62,7 +62,7 @@ Then simply:
>>> from speasy import amda
>>> mms4_fgm_btot=amda.get_parameter('mms4_b_tot', "2018-01-01", "2018-01-01T01")
>>> mms4_fgm_btot.columns
['mms4_b_tot']
['|b|']
>>> len(mms4_fgm_btot.time)
57600

Expand All @@ -75,7 +75,7 @@ AMDA products directly from your Python terminal or notebook:
>>> amdatree = spz.inventories.tree.amda
>>> mms4_fgm_btot=amda.get_parameter(amdatree.Parameters.MMS.MMS4.FGM.mms4_fgm_srvy.mms4_b_tot, "2018-01-01", "2018-01-01T01")
>>> mms4_fgm_btot.columns
['mms4_b_tot']
['|b|']
>>> len(mms4_fgm_btot.time)
57600

Expand Down
2 changes: 1 addition & 1 deletion speasy/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def remove_entry(entry: ConfigEntry):
"default": "http://amda.irap.omp.eu"},
output_format={
"description": "File format requested to AMDA, either ASCII or CDF_ISTP",
"default": "ASCII"}
"default": "CDF_ISTP"}
)

archive = ConfigSection("ARCHIVE",
Expand Down
Loading